:root {
    --primary-color: #2C3E50;
    --secondary-color: #E67E22;
    --accent-color: #27AE60;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/api/placeholder/1920/1080');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0;
}

.feature-box {
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    background: #f8f9fa;
    margin: 15px 0;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin: 20px 0;
}

.contact-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.service-card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.custom-btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar {
    background-color: rgba(255,255,255,0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}


.program-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.methodology-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.values-box {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    height: 100%;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.cookie-banner {
    background: rgba(0,0,0,0.85);
    color: white;
    padding: 20px;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
}


/* Global Variables */
:root {
    --primary: #2C3E50;
    --primary-light: #34495E;
    --secondary: #E67E22;
    --secondary-light: #F39C12;
    --accent: #27AE60;
    --accent-light: #2ECC71;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --gray: #6c757d;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --transition: all 0.3s ease-in-out;
    --box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    --text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

h2:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: var(--box-shadow);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary) !important;
    transition: var(--transition);
}

.navbar-brand:hover {
    transform: translateY(-2px);
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    color: var(--primary) !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(44,62,80,0.9) 0%, rgba(52,73,94,0.9) 100%),
    url('../img/hero.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    text-align: center;
    color: white;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    text-shadow: var(--text-shadow);
    animation: fadeInDown 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.5s;
    animation-fill-mode: both;
}

/* Buttons */
.custom-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.custom-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transition: var(--transition);
    z-index: -1;
}

.custom-btn:hover::before {
    width: 100%;
}

.custom-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Services Section */
.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
    color: white;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    color: white;
    transform: rotateY(360deg);
    transition: transform 1s ease;
}

/* Programs Section */
.program-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
}

.program-card img {
    transition: var(--transition);
}

.program-card:hover img {
    transform: scale(1.1);
}

.program-content {
    padding: 2rem;
    background: white;
}

.program-list {
    margin-top: 1rem;
}

.program-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.program-list i {
    color: var(--success);
    margin-right: 0.5rem;
}

/* Methodology Section */
.methodology-section {
    background: var(--light);
    position: relative;
}

.methodology-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-light) 0%, transparent 100%);
    opacity: 0.05;
}

.values-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.values-box::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    transition: var(--transition);
    opacity: 0;
}

.values-box:hover::before {
    top: 0;
    opacity: 0.95;
}

.values-box:hover {
    transform: translateY(-10px);
    color: white;
}

.values-box i {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.values-box:hover i {
    color: white;
    transform: rotateY(360deg);
}

/* Testimonials Section */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem 0;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.testimonial-quote {
    font-size: 4rem;
    color: var(--secondary);
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 3px solid var(--primary);
}

/* Contact Section */
.contact-section {
    background: var(--light);
    position: relative;
}

.contact-info {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    transition: var(--transition);
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-title {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-links a:hover::before {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* Cookie Banner */
.cookie-banner {
    background: rgba(0,0,0,0.95);
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
}

.cookie-banner.show {
    bottom: 0;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 10px;
        box-shadow: var(--box-shadow);
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 80vh;
    }

    .custom-btn {
        padding: 0.75rem 1.5rem;
    }

    .service-card,
    .program-card,
    .values-box {
        margin-bottom: 2rem;
    }
}

@media (max-width: 575.98px) {
    html {
        font-size: 14px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-padding {
        padding: 3rem 0;
    }
}

/* Utility Classes */
.section-padding {
    padding: 5rem 0;
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.shadow-custom {
    box-shadow: var(--box-shadow);
}

.rounded-custom {
    border-radius: 15px;
}

.overflow-hidden {
    overflow: hidden;
}

/* Contact Section Styles */
.contact-section {
    position: relative;
    background-color: var(--light);
    padding: 80px 0;
}

/* Contact Info Box */
.contact-info-box {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-info-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-info-item:hover i {
    transform: scale(1.1);
    color: var(--secondary);
}

.contact-info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.contact-info-item p {
    color: var(--gray);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Contact Form Box */
.contact-form-box {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.form-floating {
    position: relative;
    margin-bottom: 20px;
}

.form-control, .form-select {
    height: 58px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(44,62,80,0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-floating > label {
    padding: 1rem 1.25rem;
    color: var(--gray);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--primary);
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

/* Custom Submit Button */
.contact-form .custom-btn {
    padding: 12px 35px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--primary);
    border: none;
    color: white;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-form .custom-btn:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-form .custom-btn i {
    transition: all 0.3s ease;
}

.contact-form .custom-btn:hover i {
    transform: translateX(5px);
}

/* Map Section */
.map-section {
    margin-top: 80px;
}

.map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Form Validation Styles */
.form-control.is-invalid {
    border-color: var(--danger);
    background-image: none;
}

.form-control.is-valid {
    border-color: var(--success);
    background-image: none;
}

.invalid-feedback {
    color: var(--danger);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Loading State */
.form-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.form-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .contact-info-box,
    .contact-form-box {
        margin-bottom: 30px;
    }

    .map-container {
        margin-top: 30px;
    }
}

@media (max-width: 767.98px) {
    .contact-form-box {
        padding: 25px;
    }

    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 575.98px) {
    .contact-section {
        padding: 50px 0;
    }

    .contact-info-item {
        padding: 15px 0;
    }

    .map-container iframe {
        height: 300px;
    }
}

/* Animation for Form Submission */
@keyframes formSuccess {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

.form-success {
    animation: formSuccess 0.5s ease;
}

/* About Page Specific Styles */
.hero-section-small {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(44,62,80,0.9) 0%, rgba(52,73,94,0.9) 100%),
    url('../img/hero.webp');
    background-size: cover;
    background-position: center;
    color: white;
    margin-top: 76px;
}

/* Team Section Styles */
.team-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.team-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 5px solid #f8f9fa;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.team-card:hover .team-image {
    transform: scale(1.05);
    border-color: var(--primary);
}

.team-card h4 {
    color: var(--primary);
    margin-top: 1.5rem;
    font-size: 1.5rem;
}

.team-card .text-muted {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Values Box Styles */
.values-box {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.values-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    transition: all 0.5s ease;
    opacity: 0;
    z-index: 1;
}

.values-box:hover::before {
    left: 0;
    opacity: 0.95;
}

.values-box * {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.values-box:hover * {
    color: white !important;
}

.values-box i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.values-box:hover i {
    transform: rotateY(360deg);
}

.values-box h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Feature Box Styles */
.feature-box {
    padding: 2rem;
    border-radius: 15px;
    background: white;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-box:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-box h4 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.feature-box i {
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.feature-box:hover i {
    transform: scale(1.2);
}

/* Main Content Section */
.main-about-content {
    position: relative;
    z-index: 1;
}

.main-about-content h2 {
    color: var(--primary);
    margin-bottom: 2rem;
    position: relative;
}

.main-about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary);
}

.main-about-content .lead {
    color: var(--gray);
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Image Styles */
.rounded.shadow {
    border-radius: 15px !important;
    transition: all 0.3s ease;
}

.rounded.shadow:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
}

/* Section Headers */
.text-center h2 {
    position: relative;
    padding-bottom: 1.5rem;
    margin-bottom: 3rem;
}

.text-center h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary);
}

/* Background Sections */
.bg-light {
    background-color: #f8f9fa !important;
    position: relative;
    overflow: hidden;
}

.bg-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light) 0%, transparent 100%);
    opacity: 0.05;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-section-small {
        min-height: 50vh;
        margin-top: 62px;
    }

    .team-image {
        width: 150px;
        height: 150px;
    }

    .values-box,
    .feature-box {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section-small {
        min-height: 40vh;
    }

    .team-card {
        margin-bottom: 2rem;
    }

    .values-box {
        margin-bottom: 1.5rem;
    }

    .feature-box:hover {
        transform: translateY(-5px);
        transform: translateX(0);
    }
}

@media (max-width: 575.98px) {
    .hero-section-small {
        min-height: 30vh;
    }

    .team-image {
        width: 120px;
        height: 120px;
    }

    .values-box i,
    .feature-box i {
        font-size: 2rem;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply Animations */
.hero-section-small h1 {
    animation: fadeInDown 1s ease-out;
}

.hero-section-small .lead {
    animation: fadeInUp 1s ease-out 0.5s;
    animation-fill-mode: both;
}

.team-card,
.values-box,
.feature-box {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(44,62,80,0.97) 0%, rgba(52,73,94,0.97) 100%);
    padding: 2rem 0;
}

.thank-you-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    animation: slideIn 0.6s ease-out;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: scaleIn 0.5s ease-out 0.3s both;
}

.thank-you-icon i {
    font-size: 3rem;
    color: white;
}

.thank-you-title {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thank-you-text {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.return-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.return-btn:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: white;
}

@keyframes slideIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* Cookie Disclaimer Styles */
.cookie-disclaimer {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.5s ease-in-out;
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.cookie-disclaimer.show {
    bottom: 0;
}

.cookie-disclaimer p {
    color: white;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    background: white;
    color: var(--dark);
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
}