:root {
    --primary-blue: #005e94;
    --dark-blue: #1C355E;
    --light-blue: #2f6992;
    --text-dark: #333333;
    --text-gray: #666666;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --gradient-hero: linear-gradient(135deg, #008CDB 0%, #0056b3 100%);
    --radius: 8px;
    --container-width: 1140px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-gray);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-blue);
    font-weight: 700;
    line-height: 1.2;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-outline {
    border-color: var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-blue);
}

.main-header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.desktop-nav ul {
    display: flex;
    gap: 25px;
}

.desktop-nav a {
    color: #888;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.desktop-nav a:hover {
    color: var(--primary-blue);
}

.menu-btn {
    display: none; 
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-blue);
    cursor: pointer;
}

.hero-section {
    background: var(--gradient-hero);
    padding: 80px 0 120px 0; 
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 600px; 
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 50%;
}

.hero-content h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 30px;
    line-height: 1.3;
}

.hero-image-wrapper {
    width: 45%;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-main-img {
    max-height: 450px;
    transition: transform 0.3s;
}

.hero-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    background: var(--white);
    border-top-right-radius: 100% 100%;
    z-index: 1;
}

.info-section {
    padding: 80px 0;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.text-col h2, .text-col h3 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.text-col p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.metrics-section {
    background-color: #E8EFF5;
    padding: 60px 0;
    position: relative;
    margin-top: 50px;
}

.metrics-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: #E8EFF5;
    border-top-left-radius: 50% 100%;
    border-top-right-radius: 50% 100%;
    z-index: -1;
}

.metrics-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.metric-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.metric-desc {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.2;
}

.cta-section {
    padding: 80px 0;
    background: var(--white);
}

.cta-headline {
    font-size: 1.5rem;
    color: #777;
    margin-bottom: 30px;
    max-width: 400px;
}

.btn-google {
    background-color: #0077B5;
    border-radius: 4px;
}

.main-footer {
    background-color: #EEEEEE;
    padding: 60px 0 30px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.social-links a {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin: 0 10px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer-nav a {
    color: #555;
    font-size: 0.8rem;
    font-weight: 600;
}

.copyright {
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
    width: 100%;
}

.copyright p {
    font-size: 0.7rem;
    color: #999;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.header-scrolled {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 10px 0;
    transition: all 0.3s ease;
}

.mobile-stories-container {
    display: none; 
}

@media (max-width: 768px) {
    
    .header-container {
        padding: 0 15px;
    }
    .desktop-nav { display: none; }
    .menu-btn { display: block; }
    
    .logo img {
        max-width: 130px !important; 
    }

    .mobile-stories-container {
        display: flex;
        gap: 2vw; 
        
        padding: 15px 5vw; 
        
        background: #ffffff;
        overflow-x: auto;
        white-space: nowrap;
        border-bottom: 1px solid #f0f0f0;
        justify-content: flex-start; 
        scrollbar-width: none; 
        -ms-overflow-style: none;
    }
    .mobile-stories-container::-webkit-scrollbar { display: none; }

    .story-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        width: 21vw; 
        flex-shrink: 0;
    }

    .story-ring {
        width: 17vw;
        height: 17vw;
        max-width: 75px; max-height: 75px;
        min-width: 55px; min-height: 55px;
        border-radius: 50%;
        padding: 2px;
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 5px;
    }

    .story-content {
        width: 100%; height: 100%;
        background-color: #fff;
        border-radius: 50%;
        display: flex; justify-content: center; align-items: center;
        border: 2px solid #fff; 
    }

    .story-content i {
        font-size: 8vw; 
        color: #005e94;
    }
    
    @media (min-width: 500px) { .story-content i { font-size: 30px; } }

    .story-item span {
        font-family: 'Open Sans', sans-serif;
        font-size: 0.7rem;
        color: #333;
        text-align: center;
        font-weight: 600;
        line-height: 1.3;
        margin-top: 2px;
        white-space: normal; 
    }

    .hero-section {
        min-height: 85vh; 
        
        padding-top: 60px; 
        padding-bottom: 120px; 
        
        align-items: center;
        display: flex;
    }

    .hero-container {
        flex-direction: column-reverse; 
        text-align: center;
        gap: 40px; 
    }

    .hero-content {
        max-width: 100%;
        width: 100%;
        padding: 0 10px;
    }

    .hero-content h1 {
        font-size: 1.6rem; 
        margin-bottom: 25px;
        line-height: 1.3;
        margin-top: 5vh;
    }
    
    .hero-image-wrapper {
        width: 100%;
        max-width: 85%; 
        margin: 0 auto;
    }

    .hero-main-img {
        transform: scale(2) !important;
        width: 100%;
        height: auto;
    }

    .grid-2-col {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }

    .image-col {
        display: flex;
        justify-content: center;
    }

    .image-col img {
        max-width: 85% !important;
        height: auto;
    }

    .metrics-grid {
        flex-direction: column;
        gap: 40px;
    }

    .cta-headline {
        margin: 0 auto 30px auto;
        text-align: center;
    }
    
    .align-center {
        text-align: center;
    }
    
    .cta-image {
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }
}