body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: white;
    color: #333;
}
header {
    height: 104px;
    width: 100%;
    background-color: #003aa0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    box-sizing: border-box;
}
.header-left {
    display: flex;
    align-items: center;
}
.logo {
    max-width: 150px;
    height: auto;
    margin: 0 20px;
}
.contact-info-box {
    border: none;
    border-radius: 35px;
    padding: 10px 20px;
    display: inline-block;
    font-size: 1.2em;
    color: white;
    background-color: rgba(130, 130, 130, 0.7);
    text-align: center;
    margin-top: 20px;
}
.header-info-container {
    margin: 30px auto; /* Add margin for spacing */
    padding: 20px; /* Optional padding for better layout */
}
.header-nav {
    position: relative;
}
.header-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}
.header-nav ul li {
    position: relative;
    margin-right: 20px;
}
.dropdown-button {
    background: none;
    border: none;
    color: white;
    font-size: 1.2em;
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition: color 0.3s;
}
.dropdown-button:hover {
    color: #f9f9f9;
}
.dropdown-menu {
    display: none; /* Ensure the dropdown menu is hidden by default */
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #003aa0;
    border-radius: 5px;
    padding: 10px 0;
    list-style: none;
    z-index: 10;
}
.dropdown-menu li {
    margin: 5px 0; /* Add margin between list options */
    padding: 5px 20px;
    border-bottom: 1px solid white; /* Add white border to separate options */
}
.dropdown-menu li:last-child {
    border-bottom: none; /* Remove border for the last item */
}
.dropdown-menu li a {
    color: white;
    font-size: 1em;
    text-decoration: none;
    display: block;
}
.dropdown-menu li a:hover {
    color: #f9f9f9;
}
.container {
    width: 100%;
    height: 60vh;
    margin: 40 auto;
    padding: 20px 40px;
    box-sizing: border-box;
    position: relative;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hero-background {
    background: url('batteryboost.webp') no-repeat center center/cover;
    background-size: cover;
}
.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}
.container * {
    position: relative;
    z-index: 2;
}
.container h1 {
    font-size: 2em; /* Make the hero section heading larger */
    color: white;
    margin-bottom: 20px;
}
h2 {
    color: white;
    font-size: 2em;
    margin-bottom: 10px;
}
p {
    font-size: 1.2em;
    line-height: 1.6;
    text-align: center;
    margin: 0 auto;
}
.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
footer {
    background-color: #003aa0;
    color: white;
    padding: 10px 0;
    width: 100%;
    bottom: 0;
}
.map-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.serving-area-container,
.pricing-section {
    margin: 40px auto;
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 10px;
    width: 80%;
}
.serving-area-container h1,
.pricing-section h1 {
    font-size: 2em;
    color: #003aa0;
    margin-bottom: 30px;
}
.serving-area-container p,
.pricing-section p {
    font-size: 1.2em;
    color: #333;
    line-height: 1.6;
    margin: 0 auto;
    margin-bottom: 20px;
}
.pricing-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.pricing-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
.pricing-card.recommended {
    border: 2px solid #003aa0;
}
.pricing-card h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}
.pricing-card .price {
    font-size: 2em;
    color: #003aa0;
    margin-bottom: 10px;
}
.pricing-card p {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 20px;
}
.select-plan {
    background-color: #003aa0;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    margin-top: auto;
    align-self: center;
    transition: background-color 0.3s;
}
.select-plan:hover {
    background-color: #002a80;
}
.features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.features li {
    font-size: 1em;
    color: #333;
    margin-bottom: 10px;
}
.highlight {
    background-color: rgba(0, 58, 160, 0.8);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    display: inline-block;
    font-weight: bold;
    margin: 20px auto;
}
.non-clickable-box {
    background-color: #f9f9f9;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 1.2em;
    text-align: center;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    align-self: center;
    margin-top: auto;
}
.situations-section,
.reasons-section {
    margin: 40px auto;
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 10px;
    width: 80%;
}
.situations-section h1,
.reasons-section h1 {
    font-size: 2em;
    color: #003aa0;
    margin-bottom: 20px;
}
.situations-section p,
.reasons-section p {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 20px;
}
.situations-list,
.reasons-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    text-align: left;
    width: 80%;
}
.situations-list li,
.reasons-list li {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}
.situations-list li::before,
.reasons-list li::before {
    content: '•';
    color: #003aa0;
    font-size: 1.5em;
    position: absolute;
    left: 0;
}
@media (max-width: 768px) {
    header {
        height: 104px;
        padding: 0 20px;
    }
    .container {
        height: 60vh;
        padding: 10px;
    }
    h2 {
        font-size: 1.5em;
    }
    p {
        font-size: 1em;
    }
    .logo {
        max-width: 100px;
    }
    .contact-info-box {
        font-size: 1em;
    }
    .map-container img {
        height: auto;
    }
}
