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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #012B28;
    color: white;
    line-height: 1.6;
}

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

.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 1rem 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

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

.logo-icon {
    width: 52px;
    height: 52px;
    transition: transform 0.5s ease;
}

.logo-icon:hover {
    transform: rotate(15deg) scale(1.1);
}

.logo-icon2,
.logohero {
    width: 273.86px;
    height: 180.29px;
}

.logo-iconfooter {
    width: 113px;
    height: 64.4px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
}

.accent {
    color: #EBB42C;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #EBB42C;
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    position: relative;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-text {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hero-subtext {
    color: #999;
    margin-bottom: 2rem;
}

.hero-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Financial Reality Section */
.financial-reality,
.benefits,
.about,
footer {
    background-color: #012B28;
}

.financial-reality {
    padding: 4rem 0;
}

.financial-reality article {
    margin-bottom: 3rem;
}

.financial-reality h2,
.benefits h2,
.about h2 {
    color: #EBB42C;
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Benefits Section */
.benefits {
    padding: 4rem 0;
}

.benefits p {
    text-align: center;
}

.benefits h2 {
    margin-bottom: 2rem;
    text-align: center;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* About Section */
.about {
    padding: 4rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 1rem;
}

/* Footer */
footer {
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-info p {
    color: #999;
    margin-top: 1rem;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links h3,
.footer-contact h3 {
    color: white;
    margin-bottom: 0.5rem;
    text-align: end;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-contact p {
    color: #999;
    text-align: end;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #666;
}

/* Buttons */
.cta-button {
    background-color: #EBB42C;
    color: black;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #d9a01f;
}

.secondary-button {
    background-color: transparent;
    color: #EBB42C;
    padding: 1rem 2rem;
    border: 1px solid #EBB42C;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.secondary-button:hover {
    background-color: #EBB42C;
    color: black;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 1000;
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    /* Grid adjustments */
    .hero .container,
    .about-content {
        grid-template-columns: 1fr !important;
    }

    /* Hide hero image on mobile */
    .hero-image {
        display: none !important;
    }

    /* Navigation */
    .nav-links {
        display: none !important;
    }

    .mobile-menu {
        display: block !important;
    }

    /* Hamburger menu bars */
    .mobile-menu span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: white;
        margin: 5px 0;
        transition: 0.3s;
    }

    /* WhatsApp button smaller on mobile */
    .whatsapp-button {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1.5rem;
        transform: translateX(-8.5%);
    }

    .about-image img {
        width: 100%;
        border-radius: 1rem;
    }

    .about-content {
        margin-top: 4rem !important;
        padding-top: 0 !important;
    }
    .about {
        padding: 0;
    }
    
    .benefits {
        padding: 0;
    }

    /* Hero text sizes for better fit */
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-text {
        font-size: 1.125rem;
    }

    /* Reduce gaps */
    .benefits-grid {
        gap: 1rem;
    }

    .benefit-item {
        padding: 1rem;
    }

    .footer-info {
        margin: auto;
        text-align: center;

    }

    .logo {
        justify-content: center;
    }

    .footer-contact {
        justify-content: center;
        align-items: center;
    }
}
