/* === CSS Variables === */
:root {
    /* Primary Colors */
    --primary-color: #FF6B35;
    --primary-dark: #E04E1B;
    --primary-light: #FF8A5F;
    
    /* Secondary Colors */
    --secondary-color: #4D9DE0;
    --secondary-dark: #2980B9;
    --secondary-light: #6FB7ED;
    
    /* Accent Colors */
    --accent-color: #FFD166;
    --accent-dark: #E5B54D;
    --accent-light: #FFE29D;
    
    /* Neutral Colors */
    --dark-color: #252525;
    --dark-medium: #333333;
    --medium-color: #6C757D;
    --light-medium: #A9A9A9;
    --light-color: #F5F5F5;
    --white-color: #FFFFFF;
    
    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    --gradient-dark: linear-gradient(135deg, var(--dark-color), var(--dark-medium));
    --gradient-light: linear-gradient(135deg, var(--white-color), var(--light-color));
    
    /* UI Elements */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 20px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.15);
    
    /* Retro 3D Effects */
    --retro-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
    --retro-border: 3px solid var(--dark-color);
    --volume-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* === Base Styles === */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rubik', sans-serif;
    color: var(--dark-medium);
    background-color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-normal);
}

a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto 1.5rem;
    border-radius: var(--border-radius-sm);
}

/* === Buttons === */
.btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: var(--border-radius-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn:active {
    transform: translateY(1px);
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--white-color);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Volume effect on buttons */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-normal);
}

.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* === Header === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white-color);
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
    transition: all var(--transition-normal);
}

.header.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--primary-color);
    transition: color var(--transition-normal);
}

.navbar-brand:hover {
    color: var(--primary-dark);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    background-color: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.nav-link {
    color: var(--dark-medium);
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color var(--transition-normal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
    transform-origin: right;
    border-radius: var(--border-radius-sm);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* === Hero Section === */
.hero {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 80px;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--white-color);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === About Section === */
.about {
    padding: 6rem 0;
    background-color: var(--white-color);
}

.about-content {
    padding: 2rem;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.image-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--volume-shadow);
    transition: transform var(--transition-normal);
    margin-bottom: 2rem;
}

.image-container:hover {
    transform: translateY(-10px);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.image-container:hover img {
    transform: scale(1.05);
}

.progress-container {
    margin-bottom: 1.5rem;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.progress {
    height: 10px;
    background-color: var(--light-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    transition: width 1s ease;
}

/* === Instructors Section === */
.instructors {
    padding: 6rem 0;
    background-color: var(--light-color);
    position: relative;
}

.instructor-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--volume-shadow);
    transition: transform var(--transition-normal);
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.instructor-card:hover {
    transform: translateY(-10px);
}

.card-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.instructor-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.position {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.social-links {
    margin-top: auto;
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--medium-color);
    transition: color var(--transition-normal);
    font-weight: 500;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* === Workshops Section === */
.workshops {
    padding: 6rem 0;
    background-color: var(--white-color);
}

.workshop-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--volume-shadow);
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: none;
}

.workshop-level {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--dark-medium);
    padding: 0.25rem 1rem;
    border-radius: var(--border-radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.workshop-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
}

.detail {
    background-color: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-md);
}

.detail .label {
    color: var(--medium-color);
    font-size: 0.875rem;
    margin-right: 0.5rem;
}

.detail .value {
    color: var(--dark-medium);
    font-weight: 500;
}

.workshop-btn {
    align-self: flex-start;
    margin-top: auto;
}

/* === Projects Section === */
.projects {
    padding: 6rem 0;
    background-color: var(--light-color);
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    border-radius: var(--border-radius-sm);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
}

.timeline-date {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white-color);
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    z-index: 1;
    box-shadow: var(--shadow-md);
}

.timeline-content {
    position: relative;
    width: 45%;
    margin-top: 3rem;
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: auto;
}

.project-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--volume-shadow);
    border: none;
}

/* === External Resources Section === */
.external-resources {
    padding: 6rem 0;
    background-color: var(--white-color);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.resource-card {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: transform var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.resource-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.resource-icon img {
    width: 60%;
    height: auto;
}

.resource-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.resource-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    transition: color var(--transition-normal);
}

.resource-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
    transform-origin: right;
}

.resource-link:hover {
    color: var(--primary-dark);
}

.resource-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* === Research Section === */
.research {
    padding: 6rem 0;
    background-color: var(--light-color);
}

.research-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--volume-shadow);
    height: 100%;
    min-height: 400px;
}

.research-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.research-content {
    padding: 2rem;
}

.research-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.research-content ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.research-content li {
    margin-bottom: 0.75rem;
}

.research-btn {
    margin-top: 1rem;
}

.research-publication {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-medium);
}

.research-publication:last-child {
    border-bottom: none;
}

.research-publication h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.publication-meta {
    color: var(--medium-color);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.publication-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* === Contact Section === */
.contact {
    padding: 6rem 0;
    background-color: var(--white-color);
}

.contact-info {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-icon {
    width: 60px;
    height: 60px;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-form {
    background-color: var(--light-color);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--volume-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    height: auto;
    padding: 0.75rem 1rem;
    border: 2px solid var(--light-medium);
    border-radius: var(--border-radius-md);
    transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
}

.map-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--volume-shadow);
    height: 450px;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === Footer === */
.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 4rem 0 2rem;
}

.footer h3 {
    color: var(--white-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-about p {
    margin-bottom: 2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--light-color);
    transition: color var(--transition-normal);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-social h3 {
    margin-bottom: 1.5rem;
}

.footer-social .social-links {
    margin-bottom: 2rem;
}

.footer-social .social-links a {
    color: var(--light-color);
    margin-right: 1.5rem;
    font-size: 1rem;
    transition: color var(--transition-normal);
}

.footer-social .social-links a:hover {
    color: var(--primary-light);
}

.newsletter h4 {
    font-size: 1.25rem;
    color: var(--white-color);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    transition: background-color var(--transition-normal);
}

.newsletter-form input::placeholder {
    color: var(--light-medium);
}

.newsletter-form input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
}

.newsletter-form button {
    padding: 0.75rem 1rem;
    border: none;
    background: var(--gradient-primary);
    color: var(--white-color);
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    cursor: pointer;
    transition: background-color var(--transition-normal);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* === Modals === */
.modal-content {
    border-radius: var(--border-radius-lg);
    border: none;
    box-shadow: var(--volume-shadow);
    overflow: hidden;
}

.modal-header {
    background: var(--gradient-primary);
    color: var(--white-color);
    border-bottom: none;
    padding: 1.5rem;
}

.modal-title {
    font-weight: 600;
    color: var(--white-color);
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    border-top: none;
    padding: 1.5rem;
}

.btn-close {
    color: var(--white-color);
    opacity: 0.8;
    transition: opacity var(--transition-normal);
}

.btn-close:hover {
    opacity: 1;
}

/* === Cookie Consent === */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    color: var(--white-color);
    padding: 1rem 0;
    z-index: 9999;
    display: none;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cookie-content p {
    margin: 0;
}

.cookie-content a {
    color: var(--primary-light);
    text-decoration: underline;
}

/* === Success Page === */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-color);
    padding: 2rem 0;
}

.success-container {
    max-width: 600px;
    text-align: center;
    padding: 3rem;
    background-color: var(--white-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--volume-shadow);
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background-color: var(--accent-light);
    color: var(--accent-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
}

.success-container h1 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.success-container p {
    margin-bottom: 2rem;
    color: var(--medium-color);
}

/* === Privacy & Terms Pages === */
.page-content {
    padding-top: 120px;
    padding-bottom: 4rem;
}

.page-content h1 {
    margin-bottom: 2rem;
}

.page-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.page-content p {
    margin-bottom: 1.5rem;
}

.page-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.page-content li {
    margin-bottom: 0.75rem;
}

/* === Animations === */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes draw {
    0% {
        stroke-dashoffset: 1000;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* === Media Queries === */
@media (max-width: 991.98px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.25rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-content, .research-content {
        padding: 1rem 0;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-date {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .timeline-content {
        width: 85%;
        margin-left: 60px;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
    }
}

@media (max-width: 767.98px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .contact-form {
        margin-top: 2rem;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .info-icon {
        margin-bottom: 1rem;
        margin-right: 0;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer-links, .footer-social {
        margin-top: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: var(--border-radius-md);
        margin-bottom: 0.5rem;
    }
    
    .newsletter-form button {
        border-radius: var(--border-radius-md);
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .hero-content {
        padding: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
html,body{
    overflow-x: hidden;
}