/* Global Variables */
:root {
    --primary-color: #2C3E50;
    --secondary-color: #3498DB;
    --accent-color: #E74C3C;
    --success-color: #2ECC71;
    --warning-color: #F1C40F;
    --light-bg: #F8F9FA;
    --dark-bg: #2C3E50;
    --text-light: #ECF0F1;
    --text-dark: #2C3E50;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.display-4 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all var(--transition-fast);
    background: rgba(44, 62, 80, 0.95) !important;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light) !important;
    transition: var(--transition-fast);
}

.navbar-brand:hover {
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    color: var(--text-light) !important;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.95), rgba(52, 152, 219, 0.9)),
    url('../img/hero.webp') center/cover;
    background-attachment: fixed;
    color: var(--text-light);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.hero-section p {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-section .btn {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.6s forwards;
}

/* Button Styles */
.btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--secondary-color);
    border: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-fast);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background-color: var(--accent-color);
}

/* Services Section */
.service-card {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 2rem;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(52, 152, 219, 0.1) 100%);
    opacity: 0;
    transition: var(--transition-medium);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
}

.service-card:hover .feature-icon {
    transform: scale(1.1);
    color: var(--accent-color);
}

/* Methodology Section */
.methodology-step {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.methodology-step::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-medium);
}

.methodology-step:hover::after {
    transform: scaleX(1);
}

.methodology-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Testimonials Section */
.testimonial-section {
    background: var(--light-bg);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    transition: var(--transition-medium);
    position: relative;
    z-index: 1;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(52, 152, 219, 0.05));
    z-index: -1;
    opacity: 0;
    transition: var(--transition-medium);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 1rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/api/placeholder/100/100') center/30px 30px;
    opacity: 0.1;
}

.contact-info {
    display: inline-block;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-info p {
    margin: 1rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

/* Footer */
footer {
    background: var(--dark-bg);
    padding: 2rem 0;
}

footer a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
}

footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    transition: var(--transition-fast);
}

footer a:hover {
    color: var(--secondary-color);
}

footer a:hover::after {
    width: 100%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .display-4 {
        font-size: 2.5rem;
    }

    .hero-section {
        min-height: 500px;
    }

    .service-card {
        margin-bottom: 2rem;
    }

    .methodology-step {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .nav-link {
        text-align: center;
        padding: 0.75rem !important;
    }

    .hero-section {
        min-height: 400px;
    }

    .display-4 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .service-card,
    .methodology-step,
    .testimonial-card {
        margin-bottom: 1.5rem;
    }

    .contact-info {
        padding: 1.5rem;
    }
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Selection Styling */
::selection {
    background: var(--secondary-color);
    color: white;
}

/* Contact Section Styles */
.contact-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/api/placeholder/100/100') center/30px 30px;
    opacity: 0.1;
}

/* Contact Info Styles */
.contact-info-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: var(--transition-fast);
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.info-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-right: 1rem;
    flex-shrink: 0;
}

.info-content h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Form Styles */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 10px;
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.contact-form .form-control:focus {
    background: white;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.3);
}

.contact-form .form-control::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.contact-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 10px;
    background: var(--accent-color);
    border: none;
    transition: var(--transition-fast);
}

.contact-form .btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Map Styles */
.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
    filter: grayscale(0.2) contrast(1.2);
    transition: var(--transition-fast);
}

.map-wrapper:hover iframe {
    filter: grayscale(0) contrast(1);
}

.map-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    pointer-events: none;
    z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .contact-info-wrapper,
    .contact-form-wrapper {
        margin-bottom: 2rem;
    }

    .info-item {
        padding: 0.8rem;
    }

    .info-item i {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .map-wrapper iframe {
        height: 350px;
    }

    .contact-form .btn-primary {
        padding: 0.8rem;
        font-size: 1rem;
    }
}

/* Form Validation Styles */
.contact-form .form-control:valid {
    border-color: var(--success-color);
}

.contact-form .form-control:invalid:not(:placeholder-shown) {
    border-color: var(--accent-color);
}

/* Loading State Styles */
.contact-form.loading .btn-primary {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

.contact-form.loading .btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Impact Section Styles */
.impact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f6f9fc 0%, #f1f4f8 100%);
    position: relative;
    overflow: hidden;
}

.impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('/api/placeholder/50/50') center/50px 50px;
    opacity: 0.1;
    pointer-events: none;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

.stat-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-ring-circle {
    fill: none;
    stroke: var(--secondary-color);
    stroke-width: 4;
    stroke-dasharray: 283;
    stroke-dashoffset: 0;
    animation: progressAnimation 2s ease-out forwards;
}

@keyframes progressAnimation {
    from {
        stroke-dashoffset: 283;
    }
    to {
        stroke-dashoffset: 0;
    }
}

.stat-title {
    font-size: 1.25rem;
    margin: 1rem 0;
    color: var(--primary-color);
}

.stat-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Journey Section Styles */
.journey-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.journey-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.timeline-content {
    position: relative;
    width: 45%;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    transform: translateX(-2rem);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    transform: translateX(2rem);
}

.timeline-content:hover {
    transform: translateY(-10px) !important;
}

.journey-icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1;
}

.journey-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.timeline-content:hover .journey-icon i {
    transform: scale(1.2);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
}

.journey-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.journey-features li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #666;
}

.journey-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    transform: translateY(-50%);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .stat-card {
        margin-bottom: 2rem;
    }

    .journey-timeline::before {
        left: 2rem;
    }

    .timeline-content {
        width: calc(100% - 4rem);
        margin-left: 4rem !important;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        transform: none;
    }

    .journey-icon {
        left: 2rem;
    }
}

@media (max-width: 768px) {
    .impact-section,
    .journey-section {
        padding: 60px 0;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .journey-icon {
        width: 50px;
        height: 50px;
    }

    .journey-icon i {
        font-size: 1.2rem;
    }
}

/* Animation Keyframes */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Section Title Styles */
.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Hero Section */
.about-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(52, 152, 219, 0.8)), url('../img/hero.webp');
    background-size: cover;
    background-position: center;
    padding: 150px 0 100px;
    color: white;
    position: relative;
}

/* Our Story Section */
.story-content {
    padding-right: 2rem;
}

.mission-points {
    margin-top: 2rem;
}

.mission-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.mission-item:hover {
    transform: translateY(-5px);
}

.mission-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.mission-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Expertise Section */
.expertise-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.expertise-wrapper h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.expertise-item {
    margin-bottom: 1.5rem;
}

.expertise-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.expertise-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.expertise-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    width: 0;
    border-radius: 4px;
    animation: progressAnimation 1.5s ease-out forwards;
}

.expertise-bar[data-percentage="90"] .expertise-progress {
    width: 90%;
}

.expertise-bar[data-percentage="95"] .expertise-progress {
    width: 95%;
}

.expertise-bar[data-percentage="85"] .expertise-progress {
    width: 85%;
}

.expertise-bar[data-percentage="92"] .expertise-progress {
    width: 92%;
}

/* Approach Section */
.approach-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.approach-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.approach-card:hover .approach-icon {
    transform: scale(1.1);
}

.approach-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.approach-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Animation for Expertise Bars */
@keyframes progressAnimation {
    from {
        width: 0;
    }
    to {
        width: var(--progress-width);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .story-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 60px;
    }

    .mission-item {
        padding: 1rem;
    }

    .expertise-wrapper {
        padding: 1.5rem;
    }

    .approach-card {
        margin-bottom: 1.5rem;
    }
}

.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(29, 45, 68, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 0;
    z-index: 1000;
    transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-btn {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cookie-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@keyframes slideIn {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}