:root {
    --primary-color: #4361ee;
    --primary-dark: #3a56d4;
    --secondary-color: #48bfe3;
    --accent-color: #56cfe1;
    --text-color: #333333;
    --text-light: #666666;
    --background-color: #ffffff;
    --alt-background: #f8f9fa;
    --border-color: #e1e5e8;
    --border-radius: 8px;
    --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --success-color: #4caf50;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
    font-display: swap;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 600;
    color: var(--text-color);
}

h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.25rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #3aa5c9;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(72, 191, 227, 0.3);
}

.btn-large {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.btn-small {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
}

/* Header */
header {
    padding: 1rem 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.logo a:hover {
    color: var(--primary-color);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
    gap: 1.5rem;
}

.menu li a {
    color: var(--text-color);
    font-weight: 500;
}

.menu li a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.hamburger {
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    position: absolute;
    left: 0;
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.menu-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Language Selector */
.language-selector {
    position: relative;
    margin-left: 0.5rem;
}

.language-dropdown {
    position: relative;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.language-dropdown:hover {
    background-color: var(--alt-background);
}

.current-language {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.current-language img {
    border-radius: 50%;
}

.language-options {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    min-width: 150px;
    z-index: 100;
    display: none;
}

.language-dropdown.open .language-options {
    display: block;
    animation: fadeIn 0.3s ease;
}

.language-options li {
    padding: 0.5rem;
    border-radius: var(--border-radius);
}

.language-options li:hover {
    background-color: var(--alt-background);
}

.language-options a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
}

.language-options img {
    border-radius: 50%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.gradient-bg {
    background: linear-gradient(135deg, #4361ee, #4cc9f0);
    color: white;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1,
.hero-text p {
    color: white;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* ZIP Search Form */
.zip-search {
    margin-top: 2rem;
}

.zip-form {
    max-width: 500px;
}

.input-group {
    display: flex;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.input-group.large {
    height: 60px;
}

.zip-input {
    flex: 1;
    border: none;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.input-group.large .zip-input {
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
}

.zip-input:focus {
    outline: none;
}

/* Section Styling */
section {
    padding: 5rem 0;
}

.alt-bg {
    background-color: var(--alt-background);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
}

.neumorphic {
    background: #ffffff;
    box-shadow: 
        12px 12px 24px rgba(0, 0, 0, 0.05),
        -12px -12px 24px rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.neumorphic:hover {
    box-shadow: 
        15px 15px 30px rgba(0, 0, 0, 0.07),
        -15px -15px 30px rgba(255, 255, 255, 0.8);
    transform: translateY(-5px);
}

/* Content with Image Layout */
.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.content-with-image.reverse {
    grid-template-columns: 1fr 1fr;
}

.content-with-image .image-container {
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.content-with-image img {
    transition: var(--transition);
}

.content-with-image img:hover {
    transform: scale(1.05);
}

.parallax-image {
    transition: transform 0.3s ease;
}

/* Cost Comparison */
.cost-comparison {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-top: 3rem;
    box-shadow: var(--card-shadow);
}

.cost-comparison ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.cost-comparison ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.cost-comparison ul li::before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Providers List */
.providers-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.provider-card {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    border-radius: var(--border-radius);
    background-color: white;
}

.provider-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 75px;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.provider-info {
    flex: 1;
}

.provider-info h3 {
    margin-bottom: 0.5rem;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0 1.5rem 0;
}

.features-list li {
    background-color: #e9f0fe;
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

/* Considerations Grid */
.considerations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.consideration-card {
    padding: 2rem;
    border-radius: var(--border-radius);
    background-color: white;
    height: 100%;
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #e9f0fe;
    color: var(--primary-color);
    border-radius: 50%;
    margin-bottom: 1rem;
}

/* CTA Block */
.cta-block {
    text-align: center;
    background: linear-gradient(135deg, #4361ee, #4cc9f0);
    padding: 3rem;
    border-radius: var(--border-radius);
    color: white;
    margin-top: 3rem;
}

.cta-block h3,
.cta-block p {
    color: white;
}

.cta-block .zip-form {
    max-width: 500px;
    margin: 2rem auto 0;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-item summary {
    padding: 1.25rem;
    background-color: white;
    cursor: pointer;
    position: relative;
    font-weight: 500;
    list-style: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-item summary:hover {
    background-color: #f5f8ff;
}

.faq-content {
    padding: 0 1.25rem 1.25rem 1.25rem;
    background-color: white;
}

/* Conclusion Section */
.conclusion-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta {
    margin-top: 3rem;
    text-align: center;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 3rem 0 1.5rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo a {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-nav a {
    color: #ccc;
}

.footer-nav a:hover {
    color: white;
}

.footer-disclaimer {
    border-top: 1px solid #555;
    padding-top: 1.5rem;
    font-size: 0.9rem;
    color: #aaa;
}

.footer-copyright {
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 2rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.search-message, .found-message {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.found-message {
    display: none;
    color: var(--success-color);
}

.company-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.company-logos img {
    max-width: 100px;
    height: auto;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    background-color: white;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1000;
    max-width: 400px;
    font-size: 0.85rem;
}

.cookie-consent p {
    margin-bottom: 0;
}

/* Desktop Only */
.desktop-only {
    display: block;
}

/* Media Queries */
@media (max-width: 1100px) {
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 900px) {
    .hero-content,
    .content-with-image,
    .content-with-image.reverse {
        grid-template-columns: 1fr;
    }
    
    .content-with-image.reverse .image-container {
        order: -1;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .provider-card {
        flex-direction: column;
        align-items: center;
    }
    
    .provider-logo {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background-color: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .menu.active {
        max-height: 500px;
    }
    
    .menu li {
        width: 100%;
    }
    
    .menu li a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--border-color);
    }
    
    .language-selector {
        margin: 1rem 2rem;
    }
    
    .header-container {
        position: relative;
    }
    
    .cta-block {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .cookie-consent {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        left: 0.5rem;
        right: 0.5rem;
        max-width: calc(100% - 1rem);
    }
}