:root {
    --primary-color: #005A9C;
    --secondary-color: #FFC107;
    --dark-color: #2c3e50;
    --light-color: #ffffff;
    --gray-color: #f4f4f4;
    --success-color: #25D366;
    --font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px; /* Offset for sticky nav */
}
body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}
.no-scroll, .modal-open {
    overflow: hidden;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Navigation Styles --- */
.main-nav {
    background: var(--primary-color);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--light-color);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.main-nav .logo img {
    border-radius: 50%;
    background: var(--light-color);
}

/* Hamburger Menu */
.nav-toggle {
    display: block;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 10px;
    z-index: 1010;
}
.hamburger {
    display: block;
    position: relative;
    width: 25px;
    height: 2px;
    background-color: var(--light-color);
    transition: all 0.2s ease-in-out;
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left:0;
    width: 25px;
    height: 2px;
    background-color: var(--light-color);
    transition: all 0.2s ease-in-out;
}
.hamburger::before {
    transform: translateY(-8px);
}
.hamburger::after {
    transform: translateY(8px);
}

/* Mobile Menu Panel */
.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(44, 62, 80, 0.98);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.77,0.2,0.05,1.0);
    z-index: 1005;
}
.nav-menu li {
    margin: 20px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.nav-menu .nav-link {
    color: var(--light-color);
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: bold;
    transition: color 0.3s;
}
.nav-menu .nav-link:hover {
    color: var(--secondary-color);
}

/* Active state for menu */
.nav-open .nav-menu {
    transform: translateX(0);
}
.nav-open .nav-menu li {
    opacity: 1;
    transition: opacity 0.4s ease 0.2s;
}
.nav-open .hamburger {
    background-color: transparent;
}
.nav-open .hamburger::before {
    transform: rotate(45deg);
}
.nav-open .hamburger::after {
    transform: rotate(-45deg);
}

/* Header Styles */
header {
    background: var(--primary-color);
    color: var(--light-color);
    text-align: center;
}
.header-content {
    padding: 40px 20px;
}
h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 10px;
}
header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-subtext {
    font-size: 0.9rem;
    margin-top: 10px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}
.benefits-bar {
    background-color: var(--gray-color);
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}
.benefits-bar .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 15px;
}
.benefit-item {
    font-weight: 700;
    color: var(--dark-color);
    font-size: 0.9rem;
    text-align: center;
}
.urgency-indicator {
    margin-top: 20px;
    font-size: 0.9rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 4px;
    display: inline-block;
}

/* -- CTA Button Pulse Animation -- */
@keyframes pulse-animation {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--success-color);
    color: var(--light-color);
    padding: 20px 40px;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    border: none;
    animation: pulse-animation 2s infinite;
}
.cta-button:hover {
    animation: none;
    transform: scale(1.05) translateY(-2px);
    background-color: #20b054;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
section {
    padding: 60px 0;
}
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

/* Responsive Design: Tablet and Desktop */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
    .nav-menu {
        position: static;
        flex-direction: row;
        transform: translateX(0);
        background: transparent;
        width: auto;
        height: auto;
    }
    .nav-menu li {
        margin: 0 15px;
        opacity: 1;
    }
    .nav-menu .nav-link {
        font-size: 1rem;
        font-weight: normal;
    }
    h1 {
        font-size: 3rem;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
}
