/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Disclaimer Banner */
.disclaimer-banner {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 12px 0;
    position: relative;
    border-bottom: 3px solid rgb(65, 78, 64);
    animation: slideDown 0.5s ease-out;
}

.disclaimer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.disclaimer-text {
    flex: 1;
}

.disclaimer-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.disclaimer-text strong {
    color: #ffd700;
}

.disclaimer-close {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.disclaimer-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

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

@media (max-width: 768px) {
    .disclaimer-banner {
        padding: 15px 0;
    }
    
    .disclaimer-content {
        flex-direction: row;
        gap: 15px;
    }
    
    .disclaimer-text p {
        font-size: 12px;
    }
    
    .disclaimer-close {
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
}

/* Navbar */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
}

.navbar-logo {
    max-height: 70px;
    width: auto;
}

.navbar-links {
    display: flex;
    gap: 30px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.navbar-link {
    color: rgb(65, 78, 64);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-link:hover {
    color: rgb(55, 68, 54);
}

.navbar-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: rgb(65, 78, 64);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: rgb(65, 78, 64);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.navbar-cta {
    background-color: rgb(65, 78, 64);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(65, 78, 64, 0.3);
}

.navbar-cta:hover {
    background-color: rgb(55, 68, 54);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(65, 78, 64, 0.4);
}

/* Hero Banner Slideshow */
.hero-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-slideshow {
    position: relative;
    width: 100%;
    min-height: 600px;
}

.banner-slide {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: none;
    animation: fadeInSlide 1s ease-in-out;
}

.banner-slide.active {
    display: block;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    padding: 80px 20px;
    max-width: 600px;
    text-align: left;
}

.banner-pretitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-weight: 500;
}

.banner-title {
    font-size: 72px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    letter-spacing: -1px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    line-height: 1;
}

.banner-year {
    font-size: 28px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    display: block;
    margin-top: 10px;
    letter-spacing: 2px;
}

.banner-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hero Section (deprecated - keeping for reference) */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #F2F2F2 100%);
    padding: 40px 0 80px;
    text-align: center;
}

.promo-banner {
    background-color: rgb(65, 78, 64);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.promo-icon {
    font-size: 20px;
}

.promo-badge {
    background-color: white;
    color: rgb(65, 78, 64);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
}

.hero-content {
    padding: 20px 0;
}

.hero-logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: rgb(65, 78, 64);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 20px;
    color: rgb(65, 78, 64);
    margin-bottom: 40px;
    font-weight: 500;
}

.hero-features {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.feature-badge {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.primary-cta {
    background: linear-gradient(135deg, rgb(65, 78, 64) 0%, rgb(55, 68, 54) 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(65, 78, 64, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.primary-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.primary-cta:hover::before {
    width: 300px;
    height: 300px;
}

.primary-cta:hover {
    background: linear-gradient(135deg, rgb(75, 88, 74) 0%, rgb(65, 78, 64) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(65, 78, 64, 0.6);
    animation: none;
}

.cta-text,
.cta-arrow {
    position: relative;
    z-index: 1;
}

.cta-arrow {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.primary-cta:hover .cta-arrow {
    transform: translateX(5px);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(65, 78, 64, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(65, 78, 64, 0.7);
    }
}

.secondary-cta {
    background-color: white;
    color: rgb(65, 78, 64);
    border: 2px solid rgb(65, 78, 64);
}

.secondary-cta:hover {
    background-color: rgb(65, 78, 64);
    color: white;
    transform: translateY(-2px);
}

/* Features Slider Section */
.features-slider {
    padding: 60px 0;
    background-color: #F2F2F2;
    border-bottom: 1px solid #e0e0e0;
}

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

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    border: 2px solid rgb(65, 78, 64);
    color: rgb(65, 78, 64);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slider-nav-btn:hover {
    background-color: rgb(65, 78, 64);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav-btn--prev {
    left: -20px;
}

.slider-nav-btn--next {
    right: -20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    color: rgb(65, 78, 64);
    margin-bottom: 20px;
    flex-shrink: 0;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-title {
    font-size: 16px;
    color: rgb(65, 78, 64);
    margin: 0;
    font-weight: 600;
}

.feature-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background-color: white;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: rgb(65, 78, 64);
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.benefit-card {
    background-color: #F2F2F2;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    color: rgb(65, 78, 64);
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.discount-banner {
    background: linear-gradient(135deg, rgb(65, 78, 64) 0%, rgb(55, 68, 54) 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(65, 78, 64, 0.3);
}

.discount-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.discount-banner p {
    font-size: 24px;
    margin: 0;
}

.discount-banner strong {
    font-size: 32px;
    font-weight: 700;
    background-color: white;
    color: rgb(65, 78, 64);
    padding: 8px 24px;
    border-radius: 12px;
    margin-left: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.discount-banner strong:hover {
    transform: scale(1.05);
}

.discount-cta {
    background: white;
    color: rgb(65, 78, 64);
    padding: 16px 40px;
    font-size: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    animation: bounceButton 2s ease-in-out infinite;
    margin: 0 !important;
}

.discount-cta:hover {
    background: #f9f9f9;
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    animation: none;
}

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

/* Trust Section */
.trust-section {
    padding-top: 80px;
    background-color: #F2F2F2;
}

.trust-description {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-badge {
    background-color: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.badge-icon {
    width: 60px;
    height: 60px;
    background-color: rgb(65, 78, 64);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    font-weight: 700;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.badge-icon svg {
    width: 32px;
    height: 32px;
    fill: white !important;
    color: white !important;
}

.badge-icon svg path {
    fill: white !important;
}

.trust-badge:hover .badge-icon {
    transform: scale(1.1);
    background-color: rgb(55, 68, 54);
}

.trust-badge p {
    color: rgb(65, 78, 64);
    font-weight: 600;
    font-size: 16px;
}

.eu-funding {
    margin-top: 60px;
    text-align: center;
    padding: 40px 20px;
    background-color: white;
    border-radius: 0;
    box-shadow: none;
    border-top: 1px solid #e0e0e0;
    width: 100%;
}

.eu-badge {
    max-height: 80px;
    height: auto;
    margin-bottom: 15px;
}

.eu-funding p {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

/* Information Section */
.info-section {
    padding: 80px 0;
    background-color: white;
}

.info-content {
    max-width: 900px;
    margin: 40px auto;
}

.info-article {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.info-article:last-child {
    border-bottom: none;
}

.info-article h3 {
    font-size: 26px;
    font-weight: 600;
    color: rgb(65, 78, 64);
    margin-bottom: 20px;
}

.info-article p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

.info-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px 30px;
    background-color: #F2F2F2;
    border-radius: 15px;
}

.info-cta p {
    font-size: 20px;
    color: rgb(65, 78, 64);
    margin-bottom: 25px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(65, 78, 64) 0%, rgb(55, 68, 54) 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-description {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: white;
}

.rating-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.rating-score {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
}

.stars {
    color: #FFB800;
    font-size: 24px;
    letter-spacing: 2px;
}

.score {
    font-weight: 700;
    color: rgb(65, 78, 64);
    font-size: 24px;
}

.review-count {
    color: #666;
}

.verified-badge {
    background-color: #F2F2F2;
    padding: 8px 20px;
    border-radius: 20px;
    color: rgb(65, 78, 64);
    font-weight: 600;
    font-size: 14px;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.testimonial-card {
    background-color: #F2F2F2;
    padding: 30px;
    border-radius: 20px;
    margin: 10px;
    min-height: 200px;
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.testimonial-card.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.testimonial-card blockquote {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card blockquote a {
    color: #333;
    text-decoration: none;
}

.testimonial-card blockquote a:hover {
    color: rgb(65, 78, 64);
}

.testimonial-stars {
    color: #FFB800;
    font-size: 20px;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.trustpilot-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.author-info strong {
    color: rgb(65, 78, 64);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 2px;
}

.author-name {
    color: #666;
    font-size: 14px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.slider-btn {
    background-color: rgb(65, 78, 64);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background-color: rgb(55, 68, 54);
    transform: scale(1.1);
}

/* Payment Methods */
.payment-methods {
    padding: 60px 0;
    background-color: white;
    border-top: 1px solid #F2F2F2;
}

.payment-methods h3 {
    text-align: center;
    font-size: 24px;
    color: rgb(65, 78, 64);
    margin-bottom: 30px;
    font-weight: 600;
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.payment-icon {
    background-color: #F2F2F2;
    padding: 15px 25px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    height: 60px;
}

.payment-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.payment-icon img {
    max-width: 80px;
    max-height: 40px;
    height: 22px;
    width: auto;
    object-fit: contain;
}

.badge-icon {
    padding: 0;
}

.badge-icon a {
    display: block;
}

.badge-icon img {
    max-width: 100px;
    height: 22px;
    border-radius: 3px;
}

.payment-subtitle {
    text-align: center;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

/* Disclaimer */
.disclaimer {
    padding: 40px 0;
    background-color: #fff5f5;
    border-top: 1px solid #ffe0e0;
}

.disclaimer p {
    font-size: 12px;
    color: #666;
    text-align: center;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background-color: rgb(65, 78, 64);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-logo {
    background-color: #fff;
    border-radius: 10px;
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.footer-contact li {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-contact a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-cta-btn {
    display: inline-block;
    background-color: white;
    color: rgb(65, 78, 64);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.footer-cta-btn:hover {
    background-color: #f9f9f9;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

/* Policy Pages */
.policy-page {
    padding: 80px 0;
    background-color: white;
    min-height: 60vh;
}

.policy-title {
    font-size: 42px;
    font-weight: 700;
    color: rgb(65, 78, 64);
    margin-bottom: 40px;
    text-align: center;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: #333;
}

.policy-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: rgb(65, 78, 64);
    margin-top: 40px;
    margin-bottom: 20px;
}

.policy-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: rgb(65, 78, 64);
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content p {
    margin-bottom: 20px;
    font-size: 16px;
}

.policy-content ul,
.policy-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.policy-content li {
    margin-bottom: 10px;
    font-size: 16px;
}

.policy-content strong {
    font-weight: 600;
    color: rgb(65, 78, 64);
}

.policy-content a {
    color: rgb(65, 78, 64);
    text-decoration: underline;
}

.policy-content a:hover {
    color: rgb(55, 68, 54);
}

/* Contact Page */
.contact-page .policy-content {
    max-width: 1100px;
}

.contact-intro {
    text-align: center;
    margin-bottom: 50px;
    font-size: 18px;
    color: #555;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: rgb(65, 78, 64);
    margin-bottom: 20px;
}

.contact-info-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: rgb(65, 78, 64);
    margin-top: 30px;
    margin-bottom: 15px;
}

.contact-info-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.contact-info-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.contact-info-section ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.contact-info-section ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: rgb(65, 78, 64);
    font-weight: bold;
}

.contact-details {
    background-color: #F2F2F2;
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.contact-details p {
    margin-bottom: 10px;
}

.contact-details a {
    color: rgb(65, 78, 64);
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background-color: #F2F2F2;
    padding: 35px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: rgb(65, 78, 64);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgb(65, 78, 64);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background-color: rgb(65, 78, 64);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: rgb(55, 68, 54);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(65, 78, 64, 0.3);
}

.form-note {
    margin-top: 15px;
    font-size: 13px;
    color: #777;
    text-align: center;
}

.form-note a {
    color: rgb(65, 78, 64);
    text-decoration: none;
    font-weight: 600;
}

.form-note a:hover {
    text-decoration: underline;
}

/* Blog Styles */
.blog-header {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, rgb(65, 78, 64) 0%, rgb(55, 68, 54) 100%);
    color: white;
    text-align: center;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.blog-section {
    padding: 80px 0;
    background-color: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.blog-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.blog-card-content {
    padding: 30px;
}

.blog-category {
    display: inline-block;
    background-color: #F2F2F2;
    color: rgb(65, 78, 64);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.blog-title {
    margin: 15px 0;
}

.blog-title a {
    color: #222;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: rgb(65, 78, 64);
}

.blog-excerpt {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    margin: 15px 0;
}

.blog-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 20px 0 15px;
    font-size: 14px;
    color: #777;
}

.blog-date::before {
    content: "📅 ";
}

.blog-read-time::before {
    content: "⏱️ ";
}

.blog-read-more {
    color: rgb(65, 78, 64);
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: rgb(55, 68, 54);
    text-decoration: underline;
}

/* Blog Post Individual */
.blog-post {
    padding: 60px 0;
    background-color: white;
}

.blog-post-header {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.blog-breadcrumb {
    display: inline-block;
    color: rgb(65, 78, 64);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 20px;
    transition: opacity 0.3s ease;
}

.blog-breadcrumb:hover {
    opacity: 0.7;
}

.blog-post-title {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin: 20px 0;
    line-height: 1.2;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    font-size: 15px;
    color: #777;
}

.blog-post-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.blog-post-content .lead {
    font-size: 22px;
    line-height: 1.6;
    color: #444;
    font-weight: 400;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid rgb(65, 78, 64);
    border-radius: 4px;
}

.blog-post-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: rgb(65, 78, 64);
    margin-top: 50px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.blog-post-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: rgb(65, 78, 64);
    margin-top: 35px;
    margin-bottom: 18px;
}

.blog-post-content p {
    margin-bottom: 20px;
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 25px 0 25px 30px;
    line-height: 1.9;
}

.blog-post-content li {
    margin-bottom: 12px;
}

.blog-post-content strong {
    font-weight: 600;
    color: rgb(65, 78, 64);
}

.blog-post-content a {
    color: rgb(65, 78, 64);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.blog-post-content a:hover {
    color: rgb(55, 68, 54);
}

.blog-cta {
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e0e0e0;
}

.blog-cta h3 {
    font-size: 28px;
    color: rgb(65, 78, 64);
    margin-bottom: 15px;
}

.blog-cta p {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
}

.blog-related {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
}

.blog-related h3 {
    font-size: 24px;
    color: rgb(65, 78, 64);
    margin-bottom: 20px;
}

.blog-related ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-related li {
    margin-bottom: 15px;
}

.blog-related a {
    color: rgb(65, 78, 64);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.blog-related ajuda:hover {
    color: rgb(55, 68, 54);
    text-decoration: underline;
    transform: translateX(5px);
}

/* Blog Carousel Section */
.blog-carousel {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.blog-carousel .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-bottom: 50px;
    margin-top: -10px;
}

.blog-carousel-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card-mini {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-mini:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.blog-card-mini .blog-category {
    display: inline-block;
    background-color: rgba(65, 78, 64, 0.1);
    color: rgb(65, 78, 64);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.blog-card-mini h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    line-height: 1.4;
}

.blog-card-mini h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-mini h3 a:hover {
    color: rgb(65, 78, 64);
}

.blog-excerpt-mini {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.blog-meta-mini {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: #999;
}

.blog-meta-mini .blog-read-time:before {
    content: "📖 ";
}

.blog-slider-controls {
    justify-content: center;
    margin-bottom: 30px;
}

.blog-cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgb(65, 78, 64) 0%, rgb(55, 68, 54) 100%);
    color: white;
    text-align: center;
}

.newsletter-description {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto 20px;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
}

.newsletter-input:focus {
    outline: 3px solid rgba(255, 255, 255, 0.3);
}

.newsletter-btn {
    background-color: white;
    color: rgb(65, 78, 64);
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background-color: #f9f9f9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-privacy {
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-logo {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    
    .navbar-logo {
        max-height: 60px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar-links {
        display: none;
        position: absolute;
        top: calc(100% + 15px);
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        gap: 15px;
        z-index: 999;
    }
    
    .navbar-links.active {
        display: flex;
    }
    
    .navbar-link::after {
        display: none;
    }
    
    .navbar-link {
        padding: 10px;
        text-align: center;
        font-size: 16px;
    }
    
    .navbar-cta {
        font-size: 12px;
        padding: 8px 20px;
    }
    
    .navbar {
        position: relative;
    }
    
    .banner-slideshow {
        min-height: 500px;
    }
    
    .banner-slide {
        min-height: 500px;
    }
    
    .banner-content {
        padding: 40px 20px;
        max-width: 100%;
        text-align: left;
    }
    
    .banner-pretitle {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .banner-title {
        font-size: 42px;
    }
    
    .banner-year {
        font-size: 20px;
    }
    
    .banner-subtitle {
        font-size: 16px;
    }
    
    .banner-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.5) 100%);
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .feature-badge {
        font-size: 10px;
        padding: 8px 16px;
    }
    
    .primary-cta {
        padding: 14px 35px;
        font-size: 16px;
    }
    
    .discount-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .discount-banner p {
        font-size: 18px;
    }
    
    .discount-banner strong {
        font-size: 24px;
        display: block;
        margin: 10px 0 0 0;
    }
    
    .discount-cta {
        padding: 14px 35px;
        font-size: 16px;
    }
    
    .slider-nav-btn {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .feature-item {
        padding: 25px 15px;
    }
    
    .eu-badge {
        max-width: 200px;
    }
    
    .payment-icons {
        gap: 15px;
    }
    
    .payment-icon {
        min-width: 80px;
        height: 50px;
        padding: 10px 15px;
    }
    
    .payment-icon img {
        max-width: 60px;
        max-height: 30px;
    }
    
    .hero-logo {
        max-width: 180px;
    }
    
    .footer-logo {
        max-width: 150px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: baseline;
    }
    
    .feature-badge {
        font-size: 11px;
        padding: 10px 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
    }
    
    .rating-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .discount-banner strong {
        display: block;
        margin: 10px 0 0 0;
    }
    
    .policy-title {
        font-size: 32px;
    }
    
    .policy-content {
        padding: 0 15px;
    }
    
    .policy-content h2 {
        font-size: 24px;
    }
    
    .policy-content h3 {
        font-size: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .submit-btn {
        padding: 12px 30px;
    }
    
    .info-content {
        padding: 0 15px;
    }
    
    .info-article h3 {
        font-size: 22px;
    }
    
    .blog-carousel-slider {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-card-mini {
        padding: 25px;
    }
    
    .blog-card-mini h3 {
        font-size: 16px;
    }
    
    .blog-slider-controls {
        margin-bottom: 20px;
    }
    
    .info-article p {
        font-size: 16px;
    }
    
    .info-cta {
        padding: 30px 20px;
    }
    
    .info-cta p {
        font-size: 18px;
    }
    
    /* Blog Responsive */
    .page-title {
        font-size: 36px;
    }
    
    .page-subtitle {
        font-size: 18px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-post-title {
        font-size: 32px;
    }
    
    .blog-post-content {
        font-size: 17px;
    }
    
    .blog-post-content .lead {
        font-size: 19px;
    }
    
    .blog-post-content h2 {
        font-size: 28px;
    }
    
    .blog-post-content h3 {
        font-size: 22px;
    }
    
    .blog-cta {
        padding: 30px 20px;
    }
    
    .blog-cta h3 {
        font-size: 24px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-btn {
        padding: 15px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .banner-content {
        max-width: 500px;
    }
    
    .banner-title {
        font-size: 58px;
    }
    
    .banner-year {
        font-size: 24px;
    }
    
    .banner-subtitle {
        font-size: 18px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .slider-nav-btn--prev {
        left: -10px;
    }
    
    .slider-nav-btn--next {
        right: -10px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Blog Tablet */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card,
.trust-badge,
.testimonial-card {
    animation: slideUp 0.6s ease-out;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(30, 30, 30, 0.98);
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin: 0;
    line-height: 1.6;
}

.cookie-text p:first-child {
    font-size: 16px;
    margin-bottom: 5px;
}

.cookie-text p:last-child {
    font-size: 14px;
    color: #ccc;
}

.cookie-text a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-text a:hover {
    color: rgb(65, 78, 64);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn.accept {
    background-color: rgb(65, 78, 64);
    color: white;
}

.cookie-btn.accept:hover {
    background-color: rgb(55, 68, 54);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(65, 78, 64, 0.4);
}

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

.cookie-btn.decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 14px 20px;
    }
    
    .cookie-text p:first-child {
        font-size: 15px;
    }
    
    .cookie-text p:last-child {
        font-size: 13px;
    }
}
