/* 
* Solavireon - Gezonde voeding voor het hele gezin
* Stylesheet
*/

/* ===== Reset & Basis ===== */
:root {
    /* Kleuren */
    --color-green: #A6D49F;
    --color-yellow: #FFF5B7;
    --color-white: #FBFBFB;
    --color-orange: #FFA45B;
    --color-blue: #264653;
    --color-dark-green: #8BB283;
    --color-light-gray: #f4f4f4;
    --color-medium-gray: #d1d1d1;
    --color-dark-gray: #666;

    /* Schaduwen */
    --shadow-sm: 0 2px 4px 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.1);
    
    /* Afrondingen */
    --border-radius-sm: 5px;
    --border-radius-md: 10px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
    
    /* Overgangen */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: var(--color-white);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sansita', sans-serif;
    color: var(--color-blue);
    line-height: 1.2;
    margin-bottom: 0.5em;
}

a {
    text-decoration: none;
    color: var(--color-blue);
    transition: var(--transition-fast);
}

a:hover {
    color: var(--color-orange);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--color-orange);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-dark-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    text-align: center;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-green);
    color: var(--color-blue);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--color-dark-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--color-blue);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: var(--color-orange);
    color: var(--color-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(251, 251, 251, 0.95);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(5px);
    transition: var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 50px;
}

.primary-navigation {
    display: flex;
    gap: 25px;
    align-items: center;
}

.primary-navigation a {
    font-weight: 600;
    color: var(--color-blue);
    position: relative;
}

.primary-navigation a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-orange);
    transition: var(--transition-normal);
}

.primary-navigation a:hover::after {
    width: 100%;
}

.cta-button a {
    padding: 8px 16px;
}

.cta-button a::after {
    display: none;
}

.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--color-blue);
}

/* ===== Hero Section ===== */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(38, 70, 83, 0.7), rgba(38, 70, 83, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 650px;
}

.hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero h2 {
    font-size: 1.8rem;
    color: var(--color-yellow);
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s forwards;
}

.hero h1.fade-in {
    animation-delay: 0.2s;
}

.hero h2.fade-in {
    animation-delay: 0.4s;
}

.hero-buttons.fade-in {
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Voordelen Section ===== */
.voordelen {
    padding: 100px 0;
    background-color: var(--color-white);
}

.voordelen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.voordeel-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.voordeel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--color-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.voordeel-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.voordeel-card:hover::before {
    transform: scaleX(1);
}

.voordeel-icon {
    background-color: var(--color-yellow);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: var(--color-blue);
    transition: var(--transition-normal);
}

.voordeel-card:hover .voordeel-icon {
    background-color: var(--color-orange);
    transform: scale(1.1);
}

.voordeel-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.voordeel-card p {
    color: var(--color-dark-gray);
}

/* ===== Hoe werkt het Section ===== */
.hoe-werkt-het {
    padding: 100px 0;
    background-color: var(--color-light-gray);
    position: relative;
    overflow: hidden;
}

.hoe-werkt-het::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/hoe.jpg");
    opacity: 0.5;
}

.stappen-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.stappen-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: var(--color-green);
    transform: translateX(-50%);
    border-radius: 2px;
}

.stap {
    position: relative;
    display: flex;
    margin-bottom: 80px;
    align-items: center;
}

.stap:last-child {
    margin-bottom: 0;
}

.stap-nummer {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sansita', sans-serif;
    font-size: 1.5rem;
    z-index: 3;
    box-shadow: var(--shadow-md);
    border: 4px solid white;
}

.stap-content {
    width: calc(50% - 50px);
    padding-right: 50px;
    text-align: right;
}

.stap-illustratie {
    width: calc(50% - 50px);
    padding-left: 50px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s ease;
}

.stap-illustratie.animated {
    opacity: 1;
    transform: translateX(0);
}

.stap-illustratie img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.stap-illustratie img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.stap:nth-child(even) {
    flex-direction: row-reverse;
}

.stap:nth-child(even) .stap-content {
    text-align: left;
    padding-right: 0;
    padding-left: 50px;
}

.stap:nth-child(even) .stap-illustratie {
    padding-left: 0;
    padding-right: 50px;
    transform: translateX(-20px);
}

.stap-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--color-blue);
}

.stap-content p {
    color: var(--color-dark-gray);
    font-size: 1.1rem;
}

/* ===== Pakketten Section ===== */
.pakketten {
    padding: 100px 0;
    background-color: var(--color-white);
}

.pakketten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pakket-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
}

.pakket-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.populair {
    border: 3px solid var(--color-orange);
    transform: scale(1.05);
}

.populair:hover {
    transform: scale(1.05) translateY(-10px);
}

.populair-badge {
    position: absolute;
    top: 20px;
    right: 0;
    background-color: var(--color-orange);
    color: white;
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
}

.pakket-header {
    background-color: var(--color-green);
    padding: 30px;
    text-align: center;
    color: var(--color-blue);
}

.populair .pakket-header {
    background-color: var(--color-orange);
    color: white;
}

.pakket-header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: inherit;
}

.prijs {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.bedrag {
    font-size: 2.5rem;
    font-weight: 700;
}

.periode {
    font-size: 1.1rem;
    margin-left: 5px;
}

.pakket-content {
    padding: 30px;
}

.pakket-content ul {
    margin-bottom: 30px;
}

.pakket-content li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--color-medium-gray);
}

.pakket-content li:last-child {
    border-bottom: none;
}

.pakket-content li i {
    margin-right: 10px;
    color: var(--color-green);
}

.niet-inbegrepen {
    color: var(--color-medium-gray);
}

.niet-inbegrepen i {
    color: var(--color-medium-gray) !important;
}

.pakket-content .btn {
    width: 100%;
}

.vergelijking-tabel {
    margin-top: 60px;
}

.vergelijking-tabel h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.tabel-container {
    overflow-x: auto;
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius-md);
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--color-medium-gray);
}

th {
    background-color: var(--color-green);
    color: var(--color-blue);
    font-weight: 700;
}

tr:nth-child(even) {
    background-color: var(--color-light-gray);
}

tr:hover {
    background-color: var(--color-yellow);
}

/* ===== Expert Section ===== */
.expert {
    padding: 100px 0;
    background-color: var(--color-yellow);
    position: relative;
    overflow: hidden;
}

.expert::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/experct.jpg");
}

.expert-content {
    display: flex;
    align-items: center;
    gap: 60px;
    background-color: white;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.expert-image {
    flex: 1;
    min-width: 300px;
}

.expert-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-text {
    flex: 1.5;
    padding: 40px;
}

.expert-text h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.expert-text h3 {
    font-size: 1.8rem;
    color: var(--color-orange);
    margin-bottom: 5px;
}

.expert-titel {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-dark-gray);
    margin-bottom: 20px;
}

.expert-text p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.expert-credentials {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.credential {
    background-color: var(--color-light-gray);
    padding: 10px 15px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.credential i {
    color: var(--color-green);
}

/* ===== Inspiratie Section ===== */
.inspiratie {
    padding: 100px 0;
    background-color: var(--color-blue);
    color: white;
    text-align: center;
}

.inspiratie .section-title,
.inspiratie .section-subtitle {
    color: white;
}

.inspiratie .section-title::after {
    background-color: var(--color-yellow);
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.input-with-icon {
    position: relative;
    flex-grow: 1;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-dark-gray);
}

.input-with-icon input {
    width: 100%;
    padding: 15px;
    padding-left: 45px;
    border: none;
    border-radius: var(--border-radius-md);
    font-size: 1rem;
}

.form-agreement {
    font-size: 0.9rem;
    opacity: 0.8;
}

.form-agreement a {
    color: var(--color-yellow);
    text-decoration: underline;
}

.form-agreement a:hover {
    color: var(--color-orange);
}

/* ===== Contact Section ===== */
.contact {
    padding: 100px 0;
    background-color: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-blok {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-blok i {
    font-size: 1.5rem;
    color: var(--color-orange);
    margin-top: 5px;
}

.info-blok h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form .form-group {
    margin-bottom: 20px;
    display: block;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--color-medium-gray);
    border-radius: var(--border-radius-md);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-green);
    box-shadow: 0 0 0 3px rgba(166, 212, 159, 0.3);
}

.map-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ===== Footer ===== */
.footer {
    background-color: var(--color-blue);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-logo p {
    opacity: 0.8;
}

.footer h3 {
    color: var(--color-yellow);
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--color-orange);
    border-radius: 1.5px;
}

.footer-links ul,
.footer-beleid ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-beleid a {
    color: white;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.footer-links a:hover,
.footer-beleid a:hover {
    opacity: 1;
    color: var(--color-yellow);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-contact i {
    color: var(--color-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.6;
}

/* ===== Responsive Styles ===== */
@media (max-width: 1100px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .expert-content {
        flex-direction: column;
    }
    
    .expert-image {
        width: 100%;
        min-width: unset;
    }
}

@media (max-width: 900px) {
    .stappen-timeline::before {
        left: 30px;
    }
    
    .stap {
        flex-direction: column-reverse !important;
        align-items: flex-start;
        margin-left: 30px;
    }
    
    .stap-nummer {
        left: 0;
        transform: translateX(-50%);
    }
    
    .stap-content,
    .stap:nth-child(even) .stap-content {
        width: 100%;
        text-align: left;
        padding-left: 30px;
        padding-right: 0;
    }
    
    .stap-illustratie,
    .stap:nth-child(even) .stap-illustratie {
        width: 100%;
        padding-left: 30px;
        padding-right: 0;
        transform: translateX(0);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.3rem;
    }
    
    .primary-navigation {
        position: fixed;
        top: 80px;
        right: 0;
        flex-direction: column;
        background-color: white;
        width: 70%;
        height: calc(100vh - 80px);
        padding: 40px 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }
    
    .primary-navigation.active {
        transform: translateX(0);
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .voordelen-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .pakketten-grid {
        grid-template-columns: 1fr;
    }
    
    .pakket-card {
        max-width: 100%;
    }
    
    .populair {
        transform: scale(1);
    }
    
    .populair:hover {
        transform: translateY(-10px);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .footer h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links ul,
    .footer-beleid ul {
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
}

/* Cookie notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(38, 70, 83, 0.95);
    color: white;
    padding: 15px;
    z-index: 1001;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(5px);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-notice.active {
    transform: translateY(0);
}

.cookie-text {
    flex: 1;
    padding-right: 20px;
}

.cookie-text a {
    color: var(--color-yellow);
    text-decoration: underline;
}

.cookie-text a:hover {
    color: var(--color-orange);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons .btn {
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* Policy pages */
.policy-page {
    padding: 120px 0 60px;
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.policy-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-green);
}

.policy-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--color-blue);
}

.policy-content h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--color-blue);
}

.policy-content p,
.policy-content ul,
.policy-content ol {
    margin-bottom: 20px;
}

.policy-content ul,
.policy-content ol {
    padding-left: 20px;
}

.policy-content li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.policy-content ol li {
    list-style-type: decimal;
}

.policy-content a {
    color: var(--color-orange);
    text-decoration: underline;
}

.policy-content a:hover {
    color: var(--color-blue);
}

.policy-content .highlight {
    background-color: var(--color-yellow);
    padding: 20px;
    border-radius: var(--border-radius-md);
    margin: 30px 0;
}

.policy-content .highlight h3 {
    margin-top: 0;
}

.policy-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--color-medium-gray);
    color: var(--color-dark-gray);
    font-size: 0.9rem;
}

/* Success page */
.success-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
    background-color: var(--color-light-gray);
}

.success-container {
    max-width: 600px;
    background-color: white;
    padding: 50px;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
}

.success-icon {
    width: 100px;
    height: 100px;
    background-color: var(--color-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 3rem;
}

.success-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--color-blue);
}

.success-message {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--color-dark-gray);
}

.success-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Animation for scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}