/* 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;
}

/* 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;
}

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

.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: 80px 0;
    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: 50px;
    height: 50px;
    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;
}

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

.eu-funding {
    margin-top: 60px;
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.eu-badge {
    max-height: 70px;
    height: auto;
}

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

/* 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 {
    background-color: transparent;
    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-cta {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    max-height: 80px;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.footer-cta h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.footer-cta p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.footer-button {
    background-color: white;
    color: rgb(65, 78, 64);
}

.footer-button:hover {
    background-color: #F2F2F2;
    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;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-logo {
        max-height: 40px;
    }
    
    .navbar-cta {
        font-size: 12px;
        padding: 8px 20px;
    }
    
    .banner-slideshow {
        min-height: 500px;
    }
    
    .banner-slide {
        min-height: 500px;
    }
    
    .banner-content {
        padding: 40px 20px;
        max-width: 100%;
        text-align: center;
    }
    
    .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: center;
    }
    
    .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;
    }
}

@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);
    }
}

/* 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;
}
