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

body {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-content {
    flex: 1 0 auto;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.3rem 5%;
    background: white;
    box-shadow: 0 2px 8px rgba(118, 204, 122, 0.1);

}

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

.logo-img {
    height: 90px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
    font-weight: 600;
}

nav a:hover {
    color: #76CC7A;
}

.nav-cta {
    background: linear-gradient(135deg, #76CC7A 0%, #5fb360 100%);
    color: white;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(118, 204, 122, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(118, 204, 122, 0.4);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f0f2f7;
    color: #1f2a44;
}

.cart-link[data-tooltip]::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: rgba(17, 26, 48, 0.96) transparent transparent transparent;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 50;
}

.cart-link[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: rgba(17, 26, 48, 0.96);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1;
    white-space: nowrap;
    padding: 8px 10px;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(17, 26, 48, 0.35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 50;
}

.cart-link[data-tooltip]:hover::before,
.cart-link[data-tooltip]:hover::after,
.cart-link[data-tooltip]:focus-visible::before,
.cart-link[data-tooltip]:focus-visible::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.cart-link:hover {
    background: #e6ebf5;
    color: #111a30;
}

.cart-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cart-count-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: #d32020;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #131C44 0%, #76CC7A 100%);
    color: white;
    padding: 8rem 5% 6rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    min-height: 700px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(118, 204, 122, 0.15);
    border-radius: 50%;
    z-index: 1;
}

.hero-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0.98;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: white;
    color: #131C44;
    padding: 1.1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1.1rem 2.5rem;
    border: 2px solid white;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
}

.btn-secondary:hover {
    background: white;
    color: #131C44;
}

.hero-image {
    flex: 1;
    min-height: 450px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 0;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Benefits Section */
.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 5rem 5%;
    background: #f5f5f5;
}

.benefit-card {
    padding: 2.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(118, 191, 204, 0.1);
    border: none;
    transition: all 0.3s;
    position: relative;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #76afcc 0%, #5fb360 100%);
    border-radius: 15px 15px 0 0;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(118, 204, 122, 0.2);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: #131C44;
    font-size: 1.4rem;
    font-weight: 700;
}

/* Features Section */
.features {
    padding: 5rem 5%;
    background: white;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 3.5rem;
    text-align: center;
    color: #131C44;
    font-weight: 800;
    letter-spacing: -1px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.feature-item {
    background: linear-gradient(135deg, #fff8f3 0%, #f5f5f5 100%);
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.3s;
}

.feature-item:hover {
    box-shadow: 0 8px 20px rgba(118, 204, 122, 0.15);
}

.feature-item h3 {
    color: #131C44;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #131C44 0%, #1a2655 100%);
    color: white;
    padding: 5rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(118, 204, 122, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.98;
    position: relative;
    z-index: 2;
}

.cta-btn {
    background: linear-gradient(135deg, #76CC7A 0%, #5fb360 100%);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(118, 204, 122, 0.3);
    position: relative;
    z-index: 2;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(118, 204, 122, 0.4);
}

/* Closing Section */
.closing {
    padding: 5rem 5%;
    background: #f5f5f5;
    text-align: center;
}

.closing h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #131C44;
    font-weight: 800;
}

.closing p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
}

/* Footer */
footer {
    background: #131C44;
    color: #e5e5e5;
    padding: 4rem 5%;
}

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

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #76CC7A;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 0.8rem;
}

.footer-section a:hover {
    color: #76CC7A;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #666;
}
.footer-bottom a {
    color: #b8bec8;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-bottom a:hover {
    color: #d1d5db;
    text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #131C44;
    color: white;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    z-index: 99;
    box-shadow: 0 -4px 15px rgba(118, 204, 122, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-text {
    flex: 1;
}

.cookie-text a {
    color: #76CC7A;
    font-weight: 600;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 1.6rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
}

.cookie-accept {
    background: linear-gradient(135deg, #76CC7A 0%, #5fb360 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(118, 204, 122, 0.3);
}

.cookie-decline {
    background: transparent;
    color: white;
    border: 1.5px solid white;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 0.75rem;
        padding: 0.9rem 4%;
    }

    .logo {
        flex: 0 0 auto;
        justify-content: flex-start;
    }

    .logo-img {
        height: 48px;
        max-width: 104px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .nav-right {
        width: auto;
        justify-content: flex-end;
        gap: 0.5rem;
        flex-wrap: wrap;
        text-align: right;
        margin-left: auto;
    }

    .nav-right a:last-child {
        margin-left: 0;
    }

    .hero {
        flex-direction: column;
        padding: 4rem 5% 3rem;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        min-height: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
}
