:root {
    --primary-gradient: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 50%, #06b6d4 100%);
    --secondary-gradient: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
    --tertiary-gradient: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    --dark-gradient: linear-gradient(135deg, #374151 0%, #4b5563 100%);
    --accent-color: #8b5cf6;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-light: #a0aec0;
    --surface: rgba(255, 255, 255, 0.9);
    --surface-hover: rgba(255, 255, 255, 0.95);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --border-radius: 16px;
    --animation-speed: 0.3s;
}

/* Fix for white overscroll area */
html, body {
    overscroll-behavior: none;
    overscroll-behavior-y: none;
    -webkit-overscroll-behavior: none;
    -webkit-overscroll-behavior-y: none;
}

/* Additional overscroll fixes for all browsers */
html {
    height: 100%;
    position: fixed;
    overflow: hidden;
    width: 100%;
}

body {
    height: 100%;
    overflow-y: auto;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

/* Prevent bounce scrolling on iOS */
@supports (-webkit-overflow-scrolling: touch) {
    html {
        position: static;
        overflow: visible;
    }
    
    body {
        position: static;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: none;
    }
}

/* Fix for white overscroll area */
html, body {
    overscroll-behavior: none;
    overscroll-behavior-y: none;
    -webkit-overscroll-behavior: none;
    -webkit-overscroll-behavior-y: none;
}

/* Additional overscroll fixes for all browsers */
html {
    height: 100%;
    position: fixed;
    overflow: hidden;
    width: 100%;
}

body {
    height: 100%;
    overflow-y: auto;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

/* Prevent bounce scrolling on iOS */
@supports (-webkit-overflow-scrolling: touch) {
    html {
        position: static;
        overflow: visible;
    }
    
    body {
        position: static;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: none;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 30%, #06b6d4 70%, #0ea5e9 100%);
    background-size: 400% 400%;
    background-attachment: fixed;
    background-repeat: no-repeat;
    animation: gradientShift 15s ease infinite;
    min-height: 100vh;
    -webkit-overscroll-behavior: none;
    -webkit-overscroll-behavior-y: none;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 30%, #06b6d4 70%, #0ea5e9 100%);
    background-size: 400% 400%;
    background-attachment: fixed;
    animation: gradientShift 15s ease infinite;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-overscroll-behavior: none;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-shape:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-shape:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 85vh;
    padding-top: 5vh;
    padding-bottom: 10vh;
    position: relative;
    overflow: hidden;
}

.hero-card {
    background: var(--surface);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    transform: translateY(50px);
    opacity: 0;
    animation: slideUp 1s ease forwards 0.3s;
    position: relative;
    overflow: hidden;
    max-width: 800px;
    width: 100%;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s;
}

.hero-card:hover::before {
    left: 100%;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.profile-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 30px;
    border: 6px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all var(--animation-speed) ease;
    position: relative;
    z-index: 1;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.profile-image-container {
    position: relative;
    display: inline-block;
}

/* Profile image hover border effect removed */

.hero-greeting {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-weight: 500;
}

.hero-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: -2px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-mission {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

.hero-contact {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all var(--animation-speed) ease;
}

.contact-item:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.contact-item i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.cta-button {
    background: var(--primary-gradient);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--animation-speed) ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
}

.cta-button:hover::before {
    left: 100%;
    opacity: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    opacity: 0.8;
    animation: bounce 2s infinite;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

.main-content {
    padding: 100px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 60px;
}

.section {
    background: var(--surface);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    margin-bottom: 60px;
    transform: translateY(30px);
    opacity: 0;
    transition: all var(--animation-speed) ease;
    position: relative;
    overflow: hidden;
}

.section.visible {
    transform: translateY(0);
    opacity: 1;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.section:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    background: var(--surface-hover);
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
    transition: width var(--animation-speed) ease;
}

.section:hover .section-title::after {
    width: 100%;
}

/* Portfolio Section Styles */
.portfolio-section {
    margin-bottom: 60px;
}

.portfolio-intro {
    text-align: center;
    margin-bottom: 50px;
}

.portfolio-intro h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.portfolio-intro p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    text-align: justify;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.project-card {
    background: var(--surface);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    transition: all var(--animation-speed) ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform var(--animation-speed) ease;
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.project-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.project-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.project-type {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: justify;
}

.project-features {
    list-style: none;
    margin-bottom: 25px;
}

.project-features li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.project-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.project-tag {
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--animation-speed) ease;
}

.project-link:hover {
    transform: translateX(5px);
}

.job {
    margin-bottom: 25px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    border-left: 4px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all var(--animation-speed) ease;
}

.job::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
    transform: scaleY(0);
    transition: transform var(--animation-speed) ease;
}

.job:hover::before {
    transform: scaleY(1);
}

.job:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.job-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.company {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
}

.job-date {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
    background: rgba(99, 102, 241, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.job-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

.job-description ul {
    list-style: none;
}

.job-description li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    transition: all var(--animation-speed) ease;
    text-align: justify;
}

.job-description li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.job-description li:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.skill-category {
    background: rgba(255, 255, 255, 0.6);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all var(--animation-speed) ease;
    position: relative;
    overflow: hidden;
}

.skill-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform var(--animation-speed) ease;
}

.skill-category:hover::before {
    transform: scaleX(1);
}

.skill-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.8);
}

.skill-category h4 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.skill-category ul {
    list-style: none;
}

.skill-category li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
    transition: all var(--animation-speed) ease;
}

.skill-category li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    transition: transform var(--animation-speed) ease;
}

.skill-category li:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.skill-category li:hover::before {
    transform: translateX(3px);
}

.education {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(40, 167, 69, 0.05));
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(40, 167, 69, 0.2);
    position: relative;
    overflow: hidden;
}

.education::before {
    content: '🎓';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    opacity: 0.3;
}

.degree {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.university {
    color: #28a745;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.location {
    color: var(--text-light);
    font-size: 0.95rem;
}

.languages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.language {
    background: var(--primary-gradient);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    transition: all var(--animation-speed) ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.language::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.language:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

.language:hover::before {
    left: 100%;
}

.language-name {
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 1rem;
}

.language-level {
    font-size: 0.85rem;
    opacity: 0.9;
}

.sticky-nav {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: var(--surface);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 15px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100px);
    opacity: 0;
    transition: all var(--animation-speed) ease;
}

.sticky-nav.visible {
    transform: translateX(0);
    opacity: 1;
}

.nav-dots {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.3);
    cursor: pointer;
    transition: all var(--animation-speed) ease;
    position: relative;
}

.nav-dot.active {
    background: var(--accent-color);
    transform: scale(1.3);
}

.nav-dot:hover {
    background: var(--accent-color);
    transform: scale(1.2);
}

.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    border: none;
    cursor: pointer;
    transition: all var(--animation-speed) ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    position: relative;
    overflow: hidden;
}

.contact-fab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.contact-fab:hover::before {
    left: 100%;
}

.whatsapp-fab {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.email-fab {
    background: var(--secondary-gradient);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
}

.email-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.6);
}

.cookie-fab {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.cookie-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
}

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--primary-gradient);
    z-index: 1001;
    transition: width 0.1s ease;
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .hero-card {
        padding: 40px 30px;
    }

    .hero-name {
        font-size: 2.8rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-contact {
        flex-direction: column;
        gap: 15px;
    }

    .section {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .job-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .sticky-nav {
        display: none;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        padding: 25px;
    }

    .portfolio-intro h2 {
        font-size: 2.5rem;
    }

    .scroll-indicator {
        bottom: 30px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-name {
        font-size: 2.2rem;
    }

    .profile-image {
        width: 140px;
        height: 140px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .portfolio-intro h2 {
        font-size: 2rem;
    }
}

/* Controls Panel Styles */
.controls-panel {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px;
}

.control-group {
    position: relative;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--surface);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--accent-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all var(--animation-speed) ease;
    box-shadow: var(--shadow-lg);
}

.control-btn:hover {
    transform: scale(1.1);
    background: var(--surface-hover);
}

.control-dropdown {
    position: absolute;
    top: 60px;
    left: 0;
    background: var(--surface);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 10px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--animation-speed) ease;
    min-width: 150px;
}

.control-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 15px;
    border: none;
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    border-radius: 8px;
    transition: all var(--animation-speed) ease;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
}

.theme-preview {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.theme-option {
    justify-content: flex-start;
}

/* Dynamic theme variables */
.theme-blue-pink {
    --primary-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    --secondary-gradient: linear-gradient(135deg, #f472b6 0%, #fb7185 100%);
    --accent-color: #6366f1;
}

.theme-purple-blue {
    --primary-gradient: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 50%, #06b6d4 100%);
    --secondary-gradient: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
    --accent-color: #8b5cf6;
}

.theme-green-teal {
    --primary-gradient: linear-gradient(135deg, #10b981 0%, #059669 50%, #0d9488 100%);
    --secondary-gradient: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    --accent-color: #10b981;
}

.theme-orange-red {
    --primary-gradient: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #dc2626 100%);
    --secondary-gradient: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    --accent-color: #f97316;
}

@media (max-width: 768px) {
    .controls-panel {
        top: 10px;
        left: 10px;
        gap: 5px;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .control-dropdown {
        top: 50px;
        min-width: 120px;
    }
}

/* Text Justification - Applied to all body text elements */
.hero-mission,
.portfolio-intro p,
.project-description,
.job-description li,
.section p {
    text-align: justify;
}

/* Hero Buttons Styling */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.consultation-button {
    background: var(--secondary-gradient);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--animation-speed) ease;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
    position: relative;
    overflow: hidden;
}

.consultation-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.consultation-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.6);
}

.consultation-button:hover::before {
    left: 100%;
}

/* Contact Form Styling */
.contact-section {
    max-width: 800px;
    margin: 60px auto 0;
}

.contact-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
    margin-bottom: 30px;
}

.form-group label {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid rgba(139, 92, 246, 0.5);
    border-radius: 12px;
    background: #ffffff;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--animation-speed) ease;
    font-family: inherit;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background: var(--primary-gradient);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--animation-speed) ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    position: relative;
    overflow: hidden;
    width: auto;
    max-width: 300px;
    margin: 25px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.contact-success,
.contact-error {
    text-align: center;
    padding: 30px;
    border-radius: 16px;
    margin-top: 30px;
}

.contact-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #059669;
}

.contact-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #dc2626;
}

.contact-success i,
.contact-error i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.contact-success h3,
.contact-error h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

/* Mobile Responsiveness for Contact Form */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .consultation-button,
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .submit-button {
        width: 100%;
        max-width: 300px;
        margin: 20px auto 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .contact-section {
        margin-top: 40px;
    }
}

/* Spacing fixes for button and sections */
.form-group.full-width {
    margin-bottom: 30px !important;
}

.submit-button {
    padding: 14px 32px !important;
    font-size: 1rem !important;
    width: auto !important;
    max-width: 300px !important;
    margin: 25px auto 0 !important;
}

/* Ensure all sections have consistent 60px bottom margin */
.section {
    margin-bottom: 60px !important;
}

.portfolio-section {
    margin-bottom: 60px !important;
}

/* Additional spacing fixes for hero, contact, and success message */

/* Reduce gap between hero section and first content section */
.main-content {
    padding: 60px 0 100px 0 !important;
}

/* Reduce gap between content and contact form */
.contact-section {
    margin: 40px auto 0 !important;
}

/* Center align the success message */
.contact-success {
    text-align: center !important;
}

.contact-success h3,
.contact-success p {
    text-align: center !important;
}

/* Klaro! Cookie Consent Custom Styling - Force Widget Appearance */
.klaro {
    font-family: 'Inter', sans-serif !important;
}

/* FORCE HIDE ALL MODAL ELEMENTS */
.klaro .cookie-modal,
.klaro .cm-modal,
.klaro .cookie-modal-backdrop,
.klaro .cm-backdrop {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* FORCE SHOW ONLY NOTICE WIDGET */
.klaro .cookie-notice {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: fixed !important;
    bottom: 20px !important;
    left: 20px !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    max-width: 380px !important;
    width: auto !important;
    height: auto !important;
    background: white !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    z-index: 10000 !important;
    border: none !important;
    font-family: 'Inter', sans-serif !important;
    animation: slideInUp 0.5s ease-out !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Custom notice body */
.klaro .cookie-notice .cn-body {
    padding: 0 !important;
    margin: 0 !important;
    background: white !important;
    border-radius: 16px !important;
    border: none !important;
    box-shadow: none !important;
}

/* Custom header with cookie emoji */
.klaro .cookie-notice .cn-title {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin: 0 !important;
    padding: 20px 20px 0 !important;
    background: white !important;
    border-radius: 16px 16px 0 0 !important;
    position: relative !important;
}

.klaro .cookie-notice .cn-title::before {
    content: '🍪' !important;
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    font-size: 24px !important;
    margin: 0 !important;
    order: -1 !important;
}

.klaro .cookie-notice .cn-title h1,
.klaro .cookie-notice .cn-title .cn-title-text {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
    margin: 0 !important;
    line-height: 1.3 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}

/* Notice content text */
.klaro .cookie-notice .cn-body .cn-text,
.klaro .cookie-notice .cn-text {
    padding: 0 20px 16px !important;
    margin: 0 !important;
    background: white !important;
}

.klaro .cookie-notice .cn-body .cn-text p,
.klaro .cookie-notice .cn-text p,
.klaro .cookie-notice .cn-body > p {
    font-size: 13px !important;
    color: #6b7280 !important;
    line-height: 1.4 !important;
    margin: 0 0 8px 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

/* Custom buttons styling */
.klaro .cookie-notice .cn-buttons {
    display: flex !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
    padding: 16px 20px 20px !important;
    margin: 0 !important;
    background: white !important;
    border-radius: 0 0 16px 16px !important;
    justify-content: flex-start !important;
}

/* All button styling */
.klaro .cookie-notice .cn-decline,
.klaro .cookie-notice .cm-btn,
.klaro .cookie-notice .cn-ok,
.klaro .cookie-notice .cn-accept-all,
.klaro .cookie-notice .cn-continue,
.klaro .cookie-notice button {
    padding: 8px 16px !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    display: inline-block !important;
    text-align: center !important;
    font-family: 'Inter', sans-serif !important;
    margin: 0 !important;
    min-height: auto !important;
    line-height: 1.2 !important;
}

/* Decline / Essential only button */
.klaro .cookie-notice .cn-decline {
    background: #f3f4f6 !important;
    color: #6b7280 !important;
}

.klaro .cookie-notice .cn-decline:hover {
    background: #e5e7eb !important;
    color: #374151 !important;
}

/* Customize / Learn more button */
.klaro .cookie-notice .cm-btn,
.klaro .cookie-notice .cn-learn-more {
    background: #f3f4f6 !important;
    color: #6b7280 !important;
}

.klaro .cookie-notice .cm-btn:hover,
.klaro .cookie-notice .cn-learn-more:hover {
    background: #e5e7eb !important;
    color: #374151 !important;
}

/* Continue without consent button */
.klaro .cookie-notice .cn-continue {
    background: #f3f4f6 !important;
    color: #6b7280 !important;
}

.klaro .cookie-notice .cn-continue:hover {
    background: #e5e7eb !important;
    color: #374151 !important;
}

/* Accept all button */
.klaro .cookie-notice .cn-ok,
.klaro .cookie-notice .cn-accept-all {
    background: var(--accent-color) !important;
    color: white !important;
}

.klaro .cookie-notice .cn-ok:hover,
.klaro .cookie-notice .cn-accept-all:hover {
    background: #7c3aed !important;
    transform: translateY(-1px) !important;
}

/* Hide any unwanted elements */
.klaro .cookie-notice .cn-powered-by,
.klaro .cookie-notice .powered-by {
    display: none !important;
}

/* Modal styling for when preferences are opened */
.klaro .cookie-modal {
    font-family: 'Inter', sans-serif !important;
    display: block !important;
}

.klaro .cookie-modal .cm-modal {
    background: white !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    border: none !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}

.klaro .cookie-modal .cm-header {
    padding: 24px 24px 0 !important;
    border-bottom: none !important;
}

.klaro .cookie-modal .cm-header h1 {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
    margin: 0 0 16px 0 !important;
}

.klaro .cookie-modal .cm-body {
    padding: 0 24px 24px !important;
}

.klaro .cookie-modal .cm-body p {
    font-size: 14px !important;
    color: #6b7280 !important;
    line-height: 1.5 !important;
    margin-bottom: 20px !important;
}

.klaro .cookie-modal .service {
    background: #f9fafb !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    padding: 16px !important;
    margin-bottom: 12px !important;
}

.klaro .cookie-modal .service .title {
    font-weight: 600 !important;
    color: #1f2937 !important;
    font-size: 14px !important;
    margin-bottom: 8px !important;
}

.klaro .cookie-modal .service .description {
    font-size: 13px !important;
    color: #6b7280 !important;
    line-height: 1.4 !important;
}

.klaro .cookie-modal .cm-footer {
    padding: 16px 24px 24px !important;
    border-top: 1px solid #e5e7eb !important;
    display: flex !important;
    gap: 12px !important;
    justify-content: flex-end !important;
}

.klaro .cookie-modal .cm-footer .cm-btn {
    padding: 10px 20px !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    font-family: 'Inter', sans-serif !important;
}

.klaro .cookie-modal .cm-footer .cm-btn.cm-btn-success {
    background: var(--accent-color) !important;
    color: white !important;
}

.klaro .cookie-modal .cm-footer .cm-btn.cm-btn-success:hover {
    background: #7c3aed !important;
    transform: translateY(-1px) !important;
}

.klaro .cookie-modal .cm-footer .cm-btn.cm-btn-info {
    background: #f3f4f6 !important;
    color: #6b7280 !important;
}

.klaro .cookie-modal .cm-footer .cm-btn.cm-btn-info:hover {
    background: #e5e7eb !important;
    color: #374151 !important;
}

/* Responsive design */
@media (max-width: 640px) {
    .klaro .cookie-notice {
        left: 10px !important;
        right: 10px !important;
        bottom: 10px !important;
        max-width: none !important;
    }
    
    .klaro .cookie-notice .cn-buttons {
        flex-direction: column !important;
    }
    
    .klaro .cookie-notice .cn-decline,
    .klaro .cookie-notice .cm-btn,
    .klaro .cookie-notice .cn-ok,
    .klaro .cookie-notice .cn-accept-all,
    .klaro .cookie-notice .cn-continue {
        width: 100% !important;
        text-align: center !important;
    }
}

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

/* Custom Cookie Consent Widget - Exact Original Design */
.custom-cookie-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 380px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    font-family: 'Inter', sans-serif;
    display: none;
    animation: slideInUp 0.5s ease-out;
}

.custom-cookie-widget.show {
    display: block;
}

.cookie-header {
    padding: 20px 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.cookie-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
}

.cookie-content {
    flex: 1;
    min-width: 0;
}

.cookie-title {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.cookie-message {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
    margin: 0;
}

.cookie-buttons {
    padding: 16px 20px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    align-items: center;
}

.cookie-btn {
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Inter', sans-serif;
    min-height: 36px;
    white-space: nowrap;
}

.cookie-btn-continue {
    grid-column: 1 / -1;
    background: #f3f4f6;
    color: #6b7280;
}

.cookie-btn-reject {
    background: #f3f4f6;
    color: #6b7280;
}

.cookie-btn-choose {
    background: #f3f4f6;
    color: #6b7280;
}

.cookie-btn-accept {
    grid-column: 1 / -1;
    background: var(--accent-color);
    color: white;
    font-weight: 700;
}

.cookie-btn-continue:hover,
.cookie-btn-reject:hover,
.cookie-btn-choose:hover {
    background: #e5e7eb;
    color: #374151;
}

.cookie-btn-accept:hover {
    background: #7c3aed;
    transform: translateY(-1px);
}

/* Responsive design for custom widget */
@media (max-width: 640px) {
    .custom-cookie-widget {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }
    
    .cookie-buttons {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .cookie-btn {
        width: 100%;
        grid-column: 1;
    }
    
    .cookie-btn-continue,
    .cookie-btn-accept {
        grid-column: 1;
    }
}

/* Custom Cookie Preferences Modal - Matching Widget Design */
.cookie-preferences-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-preferences-modal.show {
    display: block;
    opacity: 1;
}

.cookie-preferences-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.cookie-preferences-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.cookie-preferences-header {
    padding: 20px 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    position: relative;
}

.cookie-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #6b7280;
    transition: all 0.2s ease;
    font-size: 14px;
}

.cookie-close:hover {
    background: #e5e7eb;
    color: #374151;
}

.cookie-preferences-body {
    padding: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.cookie-category {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
}

.cookie-category:last-child {
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cookie-category h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.cookie-category-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
    margin: 0;
}

.cookie-toggle {
    position: relative;
}

.cookie-toggle input {
    display: none;
}

.toggle-label {
    display: block;
    width: 44px;
    height: 24px;
    background: #d1d5db;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.toggle-label:hover {
    background: #9ca3af;
}

.toggle-switch {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cookie-toggle input:checked + .toggle-label {
    background: var(--accent-color);
}

.cookie-toggle input:checked + .toggle-label:hover {
    background: #7c3aed;
}

.cookie-toggle input:checked + .toggle-label .toggle-switch {
    transform: translateX(20px);
}

.cookie-toggle input:disabled + .toggle-label {
    background: var(--accent-color);
    cursor: not-allowed;
    opacity: 0.6;
}

.cookie-preferences-footer {
    padding: 16px 20px 20px;
    border-top: 1px solid #e5e7eb;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.cookie-preferences-footer .cookie-btn-continue {
    grid-column: 1 / -1;
}

.cookie-preferences-footer .cookie-btn-accept {
    grid-column: 1 / -1;
}

/* Responsive design for modal */
@media (max-width: 640px) {
    .cookie-preferences-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .cookie-preferences-footer {
        grid-template-columns: 1fr;
    }
    
    .cookie-preferences-footer .cookie-btn {
        grid-column: 1;
    }
} 

 