/* Site CSS - Main Stylesheet */

/* Make footer stick to bottom */
html {
    height: 100%;
}

body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
}

main {
    flex: 1;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #0A6AEF;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
}

.skip-link:focus {
    top: 6px;
}

/* Typography */
h2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 48px;
    line-height: 130%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    margin-bottom: 20px;
}

.sub-heading {
    font-family: 'Manrope', sans-serif;
    font-weight: 400; /* Regular */
    font-size: 17pt;
    line-height: 150%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    margin: 0;
}

.sub-heading-smart-tech {
    font-family: 'Manrope', sans-serif;
    font-weight: 400; /* Regular */
    font-size: 15pt;
    line-height: 125%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    margin-left: 20px;
    margin-right: 20px;
    margin: 0;
    color: #333333;
}
/* Header Styles */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 100px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    width: 140px;
    height: auto;
    object-fit: contain;
}

.logo:hover .logo-img {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

nav {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-menu li a {
    color: #333;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16pt;
    line-height: 22pt;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #007bff;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-arrow {
    margin-right: 6px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    opacity: 0.9;
}

.dropdown-arrow svg {
    width: 12px;
    height: 8px;
}

.dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 14pt;
    line-height: 20pt;
    transition: background-color 0.2s ease;
}

.dropdown-menu li a:hover {
    background-color: #f8f9fa;
    color: #0A6AEF;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    grid-column: 3;
    justify-self: end;
    z-index: 10;
}

/* Dynamic scroll menu items */
.scroll-menu-items {
    display: flex;
    gap: 1rem;
    align-items: center;
    grid-column: 3;
    justify-self: end;
    margin-right: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s ease;
}

.scroll-menu-items.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-menu-items .btn {
    font-size: 12px;
    padding: 0.4rem 0.8rem;
    white-space: nowrap;
    min-width: auto;
}

/* Hide mobile menu buttons on desktop */
.mobile-menu-buttons {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 1rem;
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    /* Mobile menu overlay/mask */
    body::after {
        content: '';
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
        pointer-events: none;
    }
    
    body.mobile-menu-open::after {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-container {
        padding: 0 1rem;
    }
    
    /* Flatten menu structure on mobile - no dropdowns */
    .nav-menu .dropdown-toggle {
        pointer-events: none;
        color: #333333;
        font-weight: 600;
    }
    
    .nav-menu .dropdown-toggle .dropdown-arrow {
        display: none;
    }
    
    .nav-menu .dropdown-menu {
        position: static !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none;
        padding: 0.5rem 0 0 0;
        margin: 0;
        background: none;
    }
    
    .nav-menu .dropdown-menu li {
        padding-left: 1rem;
        list-style: none;
    }
    
    .nav-menu .dropdown-menu li a {
        display: block;
        padding: 0.5rem 0;
        color: #666666 !important;
        font-size: 14px;
        text-decoration: none;
    }
    
    /* Hide the desktop scroll menu buttons on mobile */
    .scroll-menu-items {
        display: none !important;
    }
    
    /* Show and style the mobile menu buttons */
    .mobile-menu-buttons {
        display: flex !important;
        flex-direction: row !important;
        gap: 0.5rem;
        margin-top: 0.5rem;
        padding: 1rem 1rem 0 1rem; /* Add horizontal padding */
        border-top: 1px solid #e0e0e0;
        list-style: none;
        width: 100%;
        box-sizing: border-box; /* Include padding in width calculation */
    }
    
    .mobile-menu-buttons .btn {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 11px; /* Slightly smaller font */
        padding: 0.5rem 0.5rem; /* Reduced horizontal padding */
        white-space: nowrap;
        min-width: 0; /* Allow buttons to shrink below content width */
        box-sizing: border-box; /* Include padding in width calculation */
    }
}

/* Hero Section */
.hero-section {
    background-color: #ffffff;
    padding: 3rem 2rem 1rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 2rem;
    margin: 0 auto;
}

.hero-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.01em;
    padding: 12px 24px;
    border-radius: 4px;
    border: 2px solid;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-width: 180px;
}

.btn-outline {
    background-color: transparent;
    color: #0A6AEF;
    border-color: #0A6AEF;
}

.btn-outline:hover {
    background-color: #0A6AEF;
    color: #ffffff;
}

.btn-primary {
    background-color: #0A6AEF;
    color: #ffffff;
    border-color: #0A6AEF;
}

.btn-primary:hover {
    background-color: #0848B8;
    border-color: #0848B8;
}

/* Responsive Hero Section */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Feature Cards Section */
.feature-cards-section {
    background-color: #ffffff;
    padding: 1rem 2rem;
    margin-top: 0px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
    text-align: center;
}

.card-content h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #333;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.card-content p {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Feature Cards */
@media (max-width: 768px) {
    .feature-cards-section {
        padding: 3rem 1rem;
    }
    
    .feature-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card-image {
        height: 180px;
    }
    
    .card-content {
        padding: 1.25rem;
    }
}

/* Carrier Section */
.carrier-section {
    background-color: #ffffff;
    padding-top: 4rem;
    padding-bottom: 0;
    color: #000000;
}

.carrier-content {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.carrier-content h2 {
    color: #000000;
    margin-bottom: 1rem;
}

.carrier-content .sub-heading {
    color: #333333;
}

.separator-line {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    margin: 2rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.marquee-container {
    overflow: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-top: 40px;
    margin-left: -50vw;
    margin-right: -50vw;
    border-top: 1px solid #91B0DD;
    border-bottom: 1px solid #91B0DD;
    background-color: #FFFFFF;
}

.marquee-logos {
    display: flex;
    animation: marquee 40s linear infinite;
    gap: 5rem;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
    width: calc(200% + 5rem); /* Ensure seamless loop */
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    height: 35px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logo-item img:hover {
    opacity: 1;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 2.5rem)); /* Account for gap */
    }
}

/* Pause marquee on hover */
.marquee-container:hover .marquee-logos {
    animation-play-state: paused;
}

/* Responsive Carrier Section */
@media (max-width: 768px) {
    .carrier-section {
        padding: 3rem 1rem;
    }
    
    .marquee-logos {
        gap: 1.5rem;
    }
    
    .logo-item img {
        height: 50px;
        max-width: 100px;
    }
}

/* Video Section */
.video-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
    color: #000000;
    text-align: center;
}

.video-content {
    
    margin-bottom: 20px;
}

.video-content h2 {
    margin-bottom: 16px;
}

.video-content .sub-heading {
    color: #333333;
}

.steps-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.step {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 1.5;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.video-container iframe {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    border: none;
}

.video-placeholder {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 300px;
    background-color: #f5f5f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.video-placeholder:hover {
    background-color: #eeeeee;
    transform: scale(1.02);
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #cccccc;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666666;
}

.play-button:hover {
    background-color: #0A6AEF;
    color: #ffffff;
    transform: scale(1.1);
}

.play-button svg {
    margin-left: 4px; /* Slight adjustment to center the triangle */
}

.video-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #666666;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
}

/* Responsive Video Section */
@media (max-width: 768px) {
    .video-section {
        padding: 3rem 1rem;
    }
    
    .steps-list {
        flex-direction: column;
        gap: 1rem;
    }
    
    .video-container iframe {
        height: 300px;
    }
}

/* Testimonial Section */
.testimonial-section {
    background-color: #EDF2F9;
    padding: 4rem 2rem;
    text-align: center;
}

.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto 0 auto;
    min-height: auto;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    transform: translateX(0);
}

.testimonial-slide.active {
    opacity: 1;
    position: relative;
}

.testimonial-slide h2 {
    color: #000000;
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: 600;
}

.savings-highlight {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 36px;
    color: #000000;
    margin-bottom: 0;
    line-height: 1.2;
}

.savings-description {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #666666;
    line-height: 1.4;
    margin: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #cccccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background-color: #0A6AEF;
}

.indicator:hover {
    background-color: #0A6AEF;
    opacity: 0.7;
}

/* Responsive Testimonial Section */
@media (max-width: 768px) {
    .testimonial-section {
        padding: 3rem 1rem;
    }
    
    .testimonial-slide h2 {
        font-size: 20px;
    }
    
    .savings-highlight {
        font-size: 28px;
    }
    
    .savings-description {
        font-size: 16px;
    }
    
    .carousel-indicators {
        gap: 10px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Smart Tech Section */
.smart-tech-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header-smart-tech{
    text-align: center;
    margin-bottom: 3rem;
    /* max-width: 800px; */
    margin-left: auto;
    margin-right: auto;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.image-column {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 0;
    padding: 0;
}

.agent-image {
    width: 100%;
    max-width: 400px;
    margin: 0;
    padding: 0;
}

.agent-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    margin: 0;
    padding: 0;
    display: block;
}

.features-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 0;
    padding-top: 0;
}

.feature-block {
    padding: 10px 0;
    margin: 0;
}

.feature-block:first-child {
    margin-top: 0;
    padding-top: 0;
}

.feature-block:first-child h3 {
    margin-top: 0;
    padding-top: 0;
}

.feature-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.feature-block:last-child p {
    margin-bottom: 0;
    padding-bottom: 0;
}

.feature-block h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #000000;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.feature-block p {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Smart Tech Section */
@media (max-width: 768px) {
    .smart-tech-section {
        padding: 3rem 1rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-column {
        gap: 1.5rem;
    }
    
    .feature-block {
        padding: 1rem 0;
    }
    
    .feature-block h3 {
        font-size: 18px;
    }
    
    .feature-block p {
        font-size: 15px;
    }
}

/* Call to Action Section */
.cta-section {
    background-color: #000332;
    padding: 4rem 2rem;
    text-align: center;
    color: #ffffff;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.team-photos {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    gap: -20px; /* Negative gap for overlapping effect */
}

.photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ffffff;
    position: relative;
    z-index: 2;
}

.photo-middle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ffffff;
    position: relative;
    z-index: 1;
}

.photo-1 {
    z-index: 3;
    margin-right: -20px;
}

.photo-2 {
    z-index: 4;
    margin-right: -20px;
}

.photo-3 {
    z-index: 3;
}

.photo img,
.photo-middle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-section h2 {
    color: #ffffff;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: #0A6AEF;
    color: #ffffff;
    border-color: #0A6AEF;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    min-width: 200px;
}

.cta-button:hover {
    background-color: #0848B8;
    border-color: #0848B8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 106, 239, 0.3);
}

/* Responsive CTA Section */
@media (max-width: 768px) {
    .cta-section {
        padding: 3rem 1rem;
    }
    
    .team-photos {
        margin-bottom: 1.5rem;
    }
    
    .photo {
        width: 60px;
        height: 60px;
    }
    
    .photo-1 {
        margin-right: -15px;
    }
    
    .photo-2 {
        margin-right: -15px;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 16px;
        min-width: 180px;
    }
}

/* FAQ Section */
.faq-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #000000;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 1.5rem 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #333333;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #0A6AEF;
}

.chevron {
    font-size: 16px;
    color: #666666;
    transition: transform 0.3s ease, color 0.3s ease;
    user-select: none;
}

.faq-item.active .chevron {
    transform: rotate(180deg);
    color: #0A6AEF;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 1rem;
}

.faq-answer p {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.faq-link {
    color: #0A6AEF;
    text-decoration: none;
    font-weight: 600;
}

.faq-link:hover {
    text-decoration: underline;
}

/* Responsive FAQ Section */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 1rem;
    }
    
    .faq-section h2 {
        margin-bottom: 2rem;
    }
    
    .faq-item {
        padding: 1rem 0;
    }
    
    .faq-question {
        font-size: 16px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
}

/* Footer */
.footer {
    background-color: #000332;
    padding: 3rem 0 2rem 0;
    color: #ffffff;
    border-top: 1px solid #333333;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.footer-logo-img {
    width: 140px;
    height: auto;
    object-fit: contain;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    color: #ffffff;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.8;
}

.copyright p {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #cccccc;
    margin: 0;
    line-height: 1.4;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    grid-column: 2;
    justify-self: center;
}

.link-column {
    text-align: left;
}

.link-column h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
    margin: 0 0 1rem 0;
    white-space: nowrap;
}

.link-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-column li {
    margin-bottom: 0.5rem;
}

.link-column a {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-column a:hover {
    color: #ffffff;
}

.email-subscription h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
    margin: 0 0 1rem 0;
}

.email-form {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #E0E0E0;
}

.email-input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    color: #333333;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    outline: none;
}

.email-input::placeholder {
    color: #999999;
}

.email-submit {
    padding: 12px 16px;
    border: none;
    background: #000332;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.email-submit:hover {
    background-color: #0A6AEF;
}

/* Footer Copyright */
.footer-copyright {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright p {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #cccccc;
    margin: 0;
    line-height: 1.4;
}

.footer-legal-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-legal-links a {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #ffffff;
}

.footer-legal-links a:not(:last-child)::after {
    content: '|';
    margin-left: 1rem;
    color: #666666;
}

/* Quote Modal Styles */
body.modal-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.modal-overlay.show .modal-container {
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #333333;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666666;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background-color: #f5f5f5;
    color: #333333;
}

.modal-content {
    padding: 2rem;
    min-height: 400px;
    position: relative;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.modal-intro {
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
}

.modal-intro h3 {
    display: none;
}

.modal-intro p {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin: 0 0 2rem 0;
}

.modal-intro .canopy-connect-mount {
    width: 375px !important;
    height: 600px !important;
    margin: 1rem auto 0 auto !important;
}

.modal-iframe {
    width: 375px;
    height: 700px;
    min-height: 600px;
    margin: 0 auto;
    border: none;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
}

.modal-iframe .canopy-connect-mount {
    width: 100% !important;
    height: 600px !important;
}

.modal-iframe.loaded {
    opacity: 1;
    transform: translateY(0);
}

.modal-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: #666666;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #0A6AEF;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        max-width: 95%;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }
    
    .modal-content {
        padding: 1.5rem;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        max-height: calc(95vh - 100px);
    }
    
    .modal-title {
        font-size: 20px;
    }
    
    .modal-iframe {
        height: 600px;
        min-height: 500px;
    }
    
    .modal-iframe .canopy-connect-mount {
        height: 600px !important;
    }
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0;
    }
    
    .footer-content {
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    /* Top row: Logo on left, LinkedIn on right */
    .footer-logo {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        width: 100%;
    }
    
    .footer-logo-img {
        width: 120px;
    }
    
    .social-links {
        margin-top: 0;
    }
    
    /* Navigation columns in single row */
    .footer-links {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
        grid-column: auto;
        justify-self: auto;
        max-width: 100%;
        width: 100%;
    }
    
    .link-column {
        text-align: left;
    }
    
    .link-column h4 {
        font-size: 13px;
        margin-bottom: 0.5rem;
    }
    
    .link-column ul li a {
        font-size: 11px;
    }
    
    .copyright p {
        font-size: 13px;
    }
    
    .footer-copyright {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-copyright p {
        font-size: 12px;
    }
    
    .footer-legal-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-legal-links a {
        font-size: 12px;
    }
    
    .link-column h4,
    .email-subscription h4 {
        font-size: 15px;
    }
    
    .link-column a {
        font-size: 13px;
    }
    
    .email-input {
        font-size: 13px;
        padding: 10px 14px;
    }
    
    .email-submit {
        padding: 10px 14px;
    }
    
    .footer-copyright {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .footer-copyright p {
        font-size: 13px;
    }
}

/* Partners Page Styles */
.partner-logos-section {
    background-color: #ffffff;
    padding: 3rem 2rem;
    border-bottom: 1px solid #E0E0E0;
}

.partner-logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0%);
    transition: all 0.3s ease;
}

.partner-logo:hover .partner-logo-img {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.logo-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #0A6AEF;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 14px;
}

.logo-text {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #666666;
    text-align: center;
}

.why-matters-section {
    background-color: #F5F7FA;
    padding: 4rem 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.benefits-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background-color: #E0E0E0;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.benefit-card h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #333333;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.benefit-card p {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

.partner-cta-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.partner-cta-section .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.partner-cta-section .cta-button {
    margin-top: 2rem;
}

/* Responsive Partners Page */
@media (max-width: 768px) {
    .partner-logos-section {
        padding: 2rem 1rem;
    }
    
    .partner-logos-grid {
        gap: 2rem;
    }
    
    .why-matters-section {
        padding: 3rem 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid::before {
        display: none;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .partner-cta-section {
        padding: 3rem 1rem;
    }
}

/* About Us Page Styles */
.about-hero-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.about-hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-hero-content h2 {
    margin-bottom: 2rem;
}

.mission-section,
.values-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
}

.mission-content,
.values-content {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}


.mission-text h3,
.values-text h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #333333;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.mission-text,
.values-text {
    flex: 1;
    min-width: 0;
}

.mission-img,
.values-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.mission-image,
.values-image {
    flex: 1;
    min-width: 0;
}

.mission-text p {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #333333;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.value-item p {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

.mission-image,
.values-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 200px;
    background-color: #f5f5f5;
    border: 2px dashed #cccccc;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #999999;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
}

/* Remove border for actual images */
.image-placeholder img {
    border: none;
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.leadership-section {
    background-color: #F5F7FA;
    padding: 4rem 2rem;
    text-align: center;
}

.leadership-section h2 {
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.team-member-link {
    cursor: pointer;
}

.member-photo {
    width: 100%;
    height: 0;
    padding-bottom: 65.25%; /* 522/800 = 0.6525 = 65.25% */
    margin-bottom: 0;
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

.team-member-content {
    padding: 1.5rem;
}

.member-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Removed zoom effect on team member images */

.photo-placeholder {
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
}

.team-member h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #333333;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.member-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #666666;
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.bio-link {
    color: #0A6AEF;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.bio-link:hover {
    color: #0848B8;
    text-decoration: underline;
}

/* Responsive About Us Page */
@media (max-width: 768px) {
    .about-hero-section {
        padding: 3rem 1rem;
    }
    
    .mission-section,
    .values-section {
        padding: 3rem 1rem;
    }
    
    .mission-content,
    .values-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .image-placeholder {
        width: 250px;
        height: 150px;
    }
    
    .leadership-section {
        padding: 3rem 1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-member-content {
        padding: 1rem;
    }
    
    .member-photo {
        padding-bottom: 65.25%; /* Maintain same aspect ratio on mobile */
    }
    
    .photo-placeholder {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 480px) {
    .mission-text h3,
    .values-text h3 {
        font-size: 24px;
    }
    
    .mission-text p {
        font-size: 16px;
    }
    
    .value-item h4 {
        font-size: 16px;
    }
    
    .value-item p {
        font-size: 14px;
    }
    
    .team-member h4 {
        font-size: 18px;
    }
    
    .member-title {
        font-size: 14px;
    }
}

/* Agency Page Styles */
.agency-hero-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
}

.agency-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.agency-hero-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.agency-hero-content .sub-heading {
    text-align: left;
    margin-bottom: 2rem;
}

.agency-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.agency-hero-image .image-placeholder {
    width: 400px;
    height: 400px;
    background-color: #f5f5f5;
    border: 2px dashed #cccccc;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #999999;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
}

/* Remove border for actual images in agency hero */
.agency-hero-image .image-placeholder img,
.agency-hero-image img.image-placeholder {
    border: none;
    border-radius: 12px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Override container border when it contains an image */
.agency-hero-image .image-placeholder:has(img) {
    border: none;
    background: transparent;
}

.agents-qualities-section {
    background-color: #F5F7FA;
    padding: 4rem 2rem;
    text-align: center;
}

.agents-qualities-section h2 {
    margin-bottom: 3rem;
}

.qualities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.quality-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quality-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.quality-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.quality-card h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #333333;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.quality-card p {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

.reinforcement-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.reinforcement-content h2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 36px;
    color: #333333;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.reinforcement-content h2:last-child {
    margin-bottom: 0;
}

.ready-to-work-section {
    background-color: #F5F7FA;
    padding: 4rem 2rem;
    text-align: center;
}

.ready-to-work-section .team-photos {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.ready-to-work-section .photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ffffff;
    position: relative;
    z-index: 2;
}

.ready-to-work-section .photo:nth-child(1) {
    z-index: 4;
    margin-right: -10px;
}

.ready-to-work-section .photo:nth-child(2) {
    z-index: 3;
    margin-right: -10px;
}

.ready-to-work-section .photo:nth-child(3) {
    z-index: 3;
    margin-right: -10px;
}

.ready-to-work-section .photo:nth-child(4) {
    z-index: 2;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
}

.ready-to-work-section h2 {
    margin-bottom: 2rem;
}

.ready-to-work-section .cta-button {
    margin-top: 1rem;
}

/* Responsive Agency Page */
@media (max-width: 768px) {
    .agency-hero-section {
        padding: 3rem 1rem;
    }
    
    .agency-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .agency-hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .agency-hero-content h2 {
        text-align: center;
    }
    
    .agency-hero-content .sub-heading {
        text-align: center;
    }
    
    .agency-hero-content .btn {
        align-self: center;
    }
    
    .agency-hero-image .image-placeholder {
        width: 300px;
        height: 300px;
    }
    
    .agents-qualities-section {
        padding: 3rem 1rem;
    }
    
    .qualities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .quality-card {
        padding: 1.5rem;
    }
    
    .reinforcement-section {
        padding: 3rem 1rem;
    }
    
    .reinforcement-content h2 {
        font-size: 28px;
    }
    
    .ready-to-work-section {
        padding: 3rem 1rem;
    }
    
    .ready-to-work-section .team-photos {
        gap: 0.5rem;
    }
    
    .ready-to-work-section .photo {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .agency-hero-image .image-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .reinforcement-content h2 {
        font-size: 24px;
    }
    
    .quality-card h3 {
        font-size: 18px;
    }
    
    .quality-card p {
        font-size: 14px;
    }
}

/* Licensing Page Styles */
.licensing-hero-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.licensing-hero-content h2 {
    margin-bottom: 2rem;
}

.disclaimer-box {
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1rem 2rem;
    display: inline-block;
    margin-top: 1rem;
}

.disclaimer-box p {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    margin: 0;
}

.interactive-map-section {
    background-color: #F5F7FA;
    padding: 4rem 2rem;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
}

.map-header {
    text-align: center;
    margin-bottom: 3rem;
}

.map-header h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #333333;
    margin: 0 0 1rem 0;
}

.map-header p {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    margin: 0;
}

.map-wrapper {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

#us-map {
    width: 100%;
    height: auto;
    max-width: 800px;
    margin: 0 auto;
    display: block;
}

.state {
    transition: all 0.3s ease;
    cursor: pointer;
}

.state:hover {
    fill: #0848B8 !important;
    stroke-width: 3;
}

.state.active {
    fill: #FFD700 !important;
    stroke: #333333;
    stroke-width: 3;
}

.license-info-display {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.license-info-content h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #333333;
    margin: 0 0 1rem 0;
}

.license-info-content p {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    margin: 0;
}

/* Responsive Licensing Page */
@media (max-width: 768px) {
    .licensing-hero-section {
        padding: 3rem 1rem;
    }
    
    .interactive-map-section {
        padding: 3rem 1rem;
    }
    
    .map-wrapper {
        padding: 1rem;
    }
    
    .map-header h3 {
        font-size: 20px;
    }
    
    .map-header p {
        font-size: 14px;
    }
    
    .license-info-display {
        padding: 1.5rem;
    }
    
    .license-info-content h4 {
        font-size: 18px;
    }
    
    .license-info-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .disclaimer-box {
        padding: 0.75rem 1rem;
    }
    
    .disclaimer-box p {
        font-size: 12px;
    }
    
    .map-header h3 {
        font-size: 18px;
    }
    
    .map-header p {
        font-size: 13px;
    }
}

/* Contact Page Styles */
.contact-section {
    background-color: #F5F7FA;
    padding: 4rem 2rem;
    min-height: auto;
}

/* Sticky footer for contact page */
body.contact-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.contact-page main {
    flex: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 48px;
    line-height: 130%;
    color: #333333;
    text-align: left;
    margin-bottom: 1rem;
    display: block;
}

.contact-subheading {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 17pt;
    line-height: 150%;
    color: #333333;
    text-align: left;
    margin-bottom: 2rem;
    display: block;
}

.contact-divider {
    height: 1px;
    background-color: #E0E0E0;
    margin: 2rem 0;
}

.contact-method h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #333333;
    margin-bottom: 0.5rem;
}

.contact-details {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: #0A6AEF;
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-form-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    box-sizing: border-box;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.input-with-icon {
    position: relative;
}

.input-with-icon .input-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999999;
    pointer-events: none;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    color: #333333;
    background-color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    margin: 0;
}

.contact-form .input-with-icon input {
    padding-right: 40px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0A6AEF;
    box-shadow: 0 0 0 3px rgba(10, 106, 239, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999999;
    font-family: 'Manrope', sans-serif;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit {
    width: 100%;
    background-color: #0A6AEF;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-submit:hover {
    background-color: #0848B8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 106, 239, 0.3);
}

.contact-submit:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-disclaimer {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: #999999;
    line-height: 1.4;
    margin-top: 1rem;
}

.privacy-link {
    color: #0A6AEF;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

/* Active navigation link */
.nav-menu li a.active {
    color: #0A6AEF;
    font-weight: 700;
}

/* Contact form inline confirmation */
.contact-confirmation,
.contact-confirmation h3,
.contact-confirmation p,
.contact-confirmation a {
    font-family: 'Manrope', sans-serif;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info h2 {
        font-size: 36px;
        text-align: center;
    }
    
    .contact-subheading {
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-submit {
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 2rem 1rem;
    }
    
    .contact-info h2 {
        font-size: 28px;
    }
    
    .contact-subheading {
        font-size: 16px;
    }
    
    .contact-form-container {
        padding: 1rem;
    }
}

/* 404 Error Page */
.error-section {
    background-color: #ffffff;
    padding: 3rem 2rem;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.error-code {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 120px;
    color: #0A6AEF;
    margin: 0;
    line-height: 1;
}

.error-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 36px;
    color: #333333;
    margin: 1rem 0;
}

.error-message {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    color: #666666;
    margin: 1.5rem 0 2.5rem 0;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.error-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.error-links p {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #999999;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.error-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.error-links ul li a {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    color: #0A6AEF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.error-links ul li a:hover {
    color: #0856c2;
    text-decoration: underline;
}

/* Legal Pages (Terms, Privacy, etc.) */
.legal-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
    min-height: 60vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-updated {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #999999;
    margin-bottom: 1rem;
}

.legal-content h1 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 36px;
    color: #333333;
    margin: 2rem 0 1.5rem 0;
    line-height: 1.2;
}

.legal-content h2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #333333;
    margin: 2.5rem 0 1rem 0;
    line-height: 1.3;
}

.legal-content h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #333333;
    margin: 2rem 0 1rem 0;
    line-height: 1.3;
}

.legal-content p {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-content ul,
.legal-content ol {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content strong {
    font-weight: 600;
    color: #333333;
}

.legal-content a {
    color: #0A6AEF;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Responsive 404 Page */
@media (max-width: 768px) {
    .error-section {
        padding: 4rem 1rem;
    }
    
    .error-code {
        font-size: 80px;
    }
    
    .error-title {
        font-size: 28px;
    }
    
    .error-message {
        font-size: 16px;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .error-links ul {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-section {
        padding: 2rem 1rem;
        min-height: auto;
    }
    
    .legal-content {
        max-width: 100%;
        width: 100%;
    }
    
    .legal-content h1 {
        font-size: 24px;
        word-wrap: break-word;
    }
    
    .legal-content h2 {
        font-size: 20px;
        word-wrap: break-word;
    }
    
    .legal-content h3 {
        font-size: 18px;
        word-wrap: break-word;
    }
    
    .legal-content p,
    .legal-content ul,
    .legal-content ol {
        font-size: 14px;
        word-wrap: break-word;
    }
    
    .legal-content ul,
    .legal-content ol {
        margin-left: 1.5rem;
        padding-left: 0;
    }
}
