/* Base Styles */
:root {
    /* Кольорова палітра */
    --color-white: #f5f7f9;
    --color-mint: #79c9a5;
    --color-orange: #ffa94d;
    --color-graphite: #1c1c1c;
    --color-coral: #ff6b6b;
    --color-gray: #707070;
    --color-light-gray: #e1e5e9;
    --color-dark-mint: #5ba98b;
    --color-dark-orange: #e5954c;
    --color-dark-coral: #e05e5e;
    
    /* Тіні */
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    
    /* Переходи */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Радіуси */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-round: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--color-graphite);
    background-color: var(--color-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-mint);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-dark-mint);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    border: none;
    background: none;
}

ul, ol {
    list-style-type: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-mint);
    border-radius: var(--radius-round);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--color-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius-md);
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-sm);
}

.cta-button.primary {
    background-color: var(--color-coral);
    color: white;
}

.cta-button.primary:hover {
    background-color: var(--color-dark-coral);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--color-graphite);
    border: 2px solid var(--color-coral);
}

.cta-button.secondary:hover {
    background-color: rgba(255, 107, 107, 0.1);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Header & Navigation */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
}

#header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    display: flex;
    align-items: center;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    color: var(--color-graphite);
    font-weight: 500;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-mint);
    transition: width var(--transition-medium);
}

.nav-link:hover {
    color: var(--color-mint);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--color-graphite);
    border-radius: var(--radius-round);
    transition: all var(--transition-medium);
}

/* Hero Section */
#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    margin-top: -90px; /* Header height compensation */
    background: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding-top: 90px; /* Header height */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Features Section */
#waarom-kiezen {
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

/* Process Steps Section */
#hoe-werkt-het {
    background-color: var(--color-mint);
    color: white;
}

#hoe-werkt-het .section-header h2::after {
    background-color: white;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: white;
    color: var(--color-mint);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.step-content {
    flex: 1;
}

.step-image {
    flex: 1;
    max-width: 300px;
}

.step-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-medium);
}

.step-image img:hover {
    transform: scale(1.05);
}

/* Target Groups Section */
#voor-wie {
    background-color: var(--color-white);
}

.target-groups {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.target-group {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.target-group.reversed {
    flex-direction: row-reverse;
}

.target-image {
    flex: 1;
    max-width: 450px;
}

.target-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium);
}

.target-image img:hover {
    transform: scale(1.03);
}

.target-content {
    flex: 1;
}

/* Pricing Section */
#pakketten {
    background-color: white;
}

.pricing-plans {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.pricing-plan {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    position: relative;
}

.pricing-plan:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-plan.popular {
    border: 2px solid var(--color-mint);
    transform: scale(1.05);
}

.pricing-plan.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--color-mint);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-bottom-left-radius: var(--radius-md);
}

.plan-header {
    background-color: var(--color-mint);
    color: white;
    padding: 2rem;
    text-align: center;
}

.plan-price {
    margin-top: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
}

.period {
    font-size: 1rem;
    opacity: 0.8;
}

.plan-features {
    padding: 2rem;
}

.plan-features ul {
    margin-bottom: 2rem;
}

.plan-features li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.plan-features li::before {
    content: '✓';
    color: var(--color-mint);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.plan-features li.not-included {
    color: var(--color-gray);
    text-decoration: line-through;
}

.plan-features li.not-included::before {
    content: '✕';
    color: var(--color-coral);
}

.plan-cta {
    padding: 0 2rem 2rem;
    text-align: center;
}

/* Testimonials Section */
#ervaringen {
    background-color: var(--color-orange);
    color: white;
}

#ervaringen .section-header h2::after {
    background-color: white;
}

.testimonial-carousel {
    position: relative;
    margin: 0 auto;
    max-width: 900px;
}

.testimonial-slides {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    animation: fadeIn var(--transition-medium);
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(5px);
    box-shadow: var(--shadow-md);
}

.testimonial-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: var(--radius-round);
    overflow: hidden;
    border: 3px solid white;
}

.testimonial-text {
    flex: 1;
}

.testimonial-text blockquote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    position: relative;
}

.testimonial-text blockquote::before {
    content: '"';
    font-size: 3rem;
    position: absolute;
    top: -20px;
    left: -15px;
    opacity: 0.3;
}

.author-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info {
    font-size: 0.875rem;
    opacity: 0.8;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.control-prev, .control-next {
    background-color: white;
    color: var(--color-orange);
    width: 40px;
    height: 40px;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.control-prev:hover, .control-next:hover {
    background-color: var(--color-graphite);
    color: white;
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
    margin: 0 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-round);
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    transition: all var(--transition-fast);
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.dot.active {
    background-color: white;
}

/* FAQ Section */
#faq {
    background-color: var(--color-white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem;
    background-color: white;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.faq-question:hover {
    background-color: rgba(121, 201, 165, 0.05);
}

.faq-icon {
    position: relative;
    width: 16px;
    height: 16px;
}

.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--color-mint);
    border-radius: var(--radius-round);
    transition: all var(--transition-medium);
}

.faq-icon::before {
    width: 16px;
    height: 2px;
    top: 7px;
    left: 0;
}

.faq-icon::after {
    width: 2px;
    height: 16px;
    top: 0;
    left: 7px;
}

.faq-question.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    background-color: white;
    transition: all var(--transition-medium);
}

.faq-question.active + .faq-answer {
    padding: 0 1.25rem 1.25rem;
    max-height: 500px;
}

/* Contact Section */
#contact {
    background-color: var(--color-mint);
    color: white;
}

#contact .section-header h2::after {
    background-color: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-container {
    background-color: white;
    color: var(--color-graphite);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-light-gray);
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-mint);
    box-shadow: 0 0 0 2px rgba(121, 201, 165, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

.form-submit {
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-block {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    backdrop-filter: blur(5px);
}

.info-block h3 {
    margin-bottom: 0.5rem;
}

.google-map {
    margin-top: auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Footer */
#footer {
    background-color: var(--color-graphite);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    margin-bottom: 1rem;
}

.footer-tagline {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-nav h4, .footer-legal h4, .footer-newsletter h4 {
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-nav h4::after, .footer-legal h4::after, .footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-coral);
}

.footer-nav ul, .footer-legal ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a, .footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-nav a:hover, .footer-legal a:hover {
    color: white;
}

.newsletter-form .form-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    border-color: var(--color-coral);
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.language-selector select {
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}

.copyright {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--color-coral);
    color: white;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-medium);
}

#backToTop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTop:hover {
    background-color: var(--color-dark-coral);
    transform: translateY(-5px);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    padding: 1rem 0;
    transform: translateY(100%);
    transition: transform var(--transition-medium);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 2rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-button {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.cookie-button.accept {
    background-color: var(--color-mint);
    color: white;
}

.cookie-button.accept:hover {
    background-color: var(--color-dark-mint);
}

.cookie-button.reject {
    background-color: var(--color-light-gray);
    color: var(--color-graphite);
}

.cookie-button.reject:hover {
    background-color: var(--color-gray);
    color: white;
}

/* Loading Spinner */
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.loading-spinner.visible {
    visibility: visible;
    opacity: 1;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(121, 201, 165, 0.3);
    border-top: 4px solid var(--color-mint);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Animations */
.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

.animate__delay-1s {
    animation-delay: 0.3s;
}

.animate__delay-2s {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-logo {
        grid-column: span 2;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .header-inner {
        padding: 1rem 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        box-shadow: var(--shadow-lg);
        transition: left var(--transition-medium);
        z-index: 100;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .target-group, .target-group.reversed {
        flex-direction: column;
        gap: 2rem;
    }
    
    .target-image {
        max-width: 100%;
    }
    
    .pricing-plans {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-plan {
        width: 100%;
        max-width: 350px;
    }
    
    .pricing-plan.popular {
        transform: scale(1);
    }
    
    .pricing-plan.popular:hover {
        transform: translateY(-10px);
    }
    
    .testimonial-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-logo {
        grid-column: span 1;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Policy Pages Styles */
.policy-page {
    padding-top: 120px;
    padding-bottom: 5rem;
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.policy-header {
    margin-bottom: 2rem;
    text-align: center;
}

.policy-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-mint);
}

.policy-content p, 
.policy-content ul {
    margin-bottom: 1rem;
}

.policy-content ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.policy-content a {
    color: var(--color-mint);
    text-decoration: underline;
}

.policy-content a:hover {
    color: var(--color-dark-mint);
}

.back-to-home {
    display: inline-block;
    margin-top: 2rem;
    color: var(--color-mint);
    font-weight: 500;
}

.back-to-home:hover {
    color: var(--color-dark-mint);
}

/* Success Page Styles */
.success-page {
    padding-top: 120px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-container {
    max-width: 600px;
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.success-icon {
    margin-bottom: 2rem;
}

.success-icon svg {
    width: 80px;
    height: 80px;
    color: var(--color-mint);
}

.success-title {
    margin-bottom: 1rem;
    color: var(--color-mint);
}

.success-message {
    margin-bottom: 2rem;
}

.success-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

@media screen and (max-width: 600px) {
    .policy-container {
        padding: 2rem;
    }
    
    .success-buttons {
        flex-direction: column;
    }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}