     :root {
    --primary: #7d6e66;
    --primary-light: #a3928a;
    --primary-dark: #5a4f49;
    --accent: #d1b6a3;
    --light: #f9f6f3;
    --dark: #2b2b2b;
    --gray: #767676;
    --success: #6aa284;
    --alert: #da7f7f;

    --fs-xl: clamp(2.5rem, 4vw, 3.5rem);
    --fs-lg: clamp(1.8rem, 3vw, 2.5rem);
    --fs-md: clamp(1.2rem, 2vw, 1.6rem);
    --fs-sm: clamp(1rem, 1.5vw, 1.2rem);
    --fs-xs: clamp(0.875rem, 1vw, 1rem);

    --space-xs: clamp(0.75rem, 1vw, 1rem);
    --space-sm: clamp(1rem, 2vw, 1.5rem);
    --space-md: clamp(2rem, 3vw, 2.5rem);
    --space-lg: clamp(3rem, 4vw, 4rem);
    --space-xl: clamp(5rem, 6vw, 6rem);

    --border-radius: 8px;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);

    --transition: all 0.3s ease;

    --radius-sm: 4px;
    --radius-md: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
    max-width: 100vw;
}

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

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

.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.btn {
    display: inline-block;
    padding: 0.9em 2em;
    font-weight: 500;
    font-size: var(--fs-xs);
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

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

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

.section-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: var(--fs-lg);
    margin-bottom: var(--space-md);
    position: relative;
    display: inline-block;
    color: var(--dark);
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--accent);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-xs) 0;
    transition: var(--transition);
    background-color: rgba(249, 246, 243, 0.95);
    backdrop-filter: blur(10px);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: var(--fs-md);
    font-weight: 500;
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-md);
}

.nav-link {
    font-size: var(--fs-xs);
    font-weight: 400;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary);
}

/* Hero Section - Updated */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 120px 0 80px;
    background-color: var(--light);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 50%;
    height: 100%;
    background-color: var(--accent-light);
    opacity: 0.08;
    border-radius: 30% 70% 50% 50% / 40% 40% 60% 60%;
    z-index: 0;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4%;
    max-width: 1300px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    align-items: center;
    padding: 0 var(--space-sm);
}

/* Hero Image - Now first */
.hero-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: auto;
    z-index: 2;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transition: transform 0.7s ease;
    object-fit: cover;
}

.image-container:hover .hero-image {
    transform: scale(1.02);
}

.image-shape {
    position: absolute;
    border-radius: var(--radius-md);
    z-index: -1;
}

.shape-1 {
    top: -20px;
    right: -20px;
    width: 70%;
    height: 60%;
    background-color: var(--accent-light);
    opacity: 0.3;
}

.shape-2 {
    bottom: -20px;
    left: -20px;
    width: 70%;
    height: 50%;
    border: 3px solid var(--accent-light);
}

/* Hero Content - Updated */
.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-content {
    max-width: 650px;
    width: 100%;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 20px;
}

.title-accent {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-credentials {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 24px;
}

.hero-text {
    font-size: clamp(1rem, 1.3vw, 1.25rem);
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 32px;
}

.hero-text p {
    margin-bottom: 16px;
}

.text-highlight {
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: var(--accent);
    opacity: 0.3;
    z-index: -1;
}

/* Free Meeting Banner */
.free-meeting-banner {
    background-color: white;
    padding: 24px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.free-meeting-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--accent);
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.banner-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: rgba(209, 182, 163, 0.2);
    color: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 24px;
}

.banner-text {
    flex: 1;
}

.banner-title {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.banner-description {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Scroll Arrow */
.scroll-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border-radius: 50%;
    background-color: white;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    animation: bounce 2s infinite;
    z-index: 10;
    transition: var(--transition);
}

.scroll-arrow:hover {
    background-color: var(--primary);
    color: white;
    animation-play-state: paused;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Work With Section */
.work-with {
    padding: var(--space-xl) 0;
    background-color: white;
}

.work-with-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    max-width: 1400px;
    margin: 0 auto;
}

.work-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: var(--space-sm);
    background-color: var(--light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.work-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.work-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(209, 182, 163, 0.2);
    color: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 18px;
}

.work-text {
    font-size: var(--fs-sm);
    line-height: 1.6;
    color: var(--dark);
}

/* Benefits Section */
.benefits {
    padding: var(--space-xl) 0;
    background-color: var(--light);
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    max-width: 1400px;
    margin: 0 auto;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: var(--space-md);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(209, 182, 163, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.benefit-title {
    font-weight: 500;
    font-size: var(--fs-sm);
    margin-bottom: var(--space-xs);
    color: var(--dark);
}

.benefit-text {
    font-size: var(--fs-xs);
    color: var(--gray);
    line-height: 1.5;
}

/* About Section */
.about {
    padding: var(--space-xl) 0;
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    max-height: 600px;
    position: relative;
}

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

.about-content {
    max-width: 600px;
    margin: 0 auto;
}

.about-text {
    font-size: var(--fs-sm);
    margin-bottom: var(--space-md);
    color: var(--dark);
}

.about-text p {
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.about-text ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: var(--space-sm);
}

.about-text li {
    margin-bottom: 8px;
    position: relative;
}

.about-text li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.expertise-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
    color: var(--dark);
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--fs-xs);
}

.expertise-item::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: rgba(209, 182, 163, 0.2);
    border-radius: 50%;
    color: var(--primary);
    font-size: 0.8rem;
}

/* Services Section */
.services {
    padding: var(--space-xl) 0;
    background-color: var(--light);
    text-align: center;
}

.services-heading {
    margin-bottom: var(--space-lg);
    display: inline-block;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background-color: white;
    padding: var(--space-md);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: left;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(209, 182, 163, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.service-title {
    font-weight: 500;
    font-size: var(--fs-sm);
    margin-bottom: var(--space-xs);
    color: var(--dark);
}

.service-text {
    font-size: var(--fs-xs);
    color: var(--gray);
    margin-bottom: var(--space-sm);
    flex-grow: 1;
    line-height: 1.5;
}

.service-link {
    display: inline-flex;
    align-items: center;
    font-size: var(--fs-xs);
    font-weight: 500;
    color: var(--primary);
}

.service-link svg {
    margin-left: 5px;
    transition: var(--transition);
}

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

/* FAQ Section */
.faq {
    padding: var(--space-xl) 0;
    background-color: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: var(--space-sm);
}

.faq-question {
    font-weight: 500;
    font-size: var(--fs-sm);
    margin-bottom: var(--space-xs);
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
}

.faq-answer {
    font-size: var(--fs-xs);
    color: var(--gray);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-item.active .faq-answer {
    max-height: 500px;
    margin-top: var(--space-xs);
}

.faq-answer p {
     line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: var(--space-xl) 0;
    background-color: var(--light);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info {
    padding-right: var(--space-md);
}

.contact-heading {
    margin-bottom: var(--space-md);
}

.contact-text {
    font-size: var(--fs-sm);
    margin-bottom: var(--space-md);
    color: var(--dark);
}

.contact-details {
    list-style: none;
    margin-bottom: var(--space-md);
    color: var(--dark);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xs);
    margin-bottom: var(--space-xs);
    font-size: var(--fs-xs);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(209, 182, 163, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.contact-form {
    background-color: white;
    padding: var(--space-md);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--space-sm);
}

.form-label {
    display: block;
    font-size: var(--fs-xs);
    margin-bottom: 8px;
    font-weight: 400;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-xs);
    transition: var(--transition);
    color: var(--dark);
    background-color: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(125, 110, 102, 0.1);
}

.form-control::placeholder {
    color: #aaa;
}

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

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.form-note {
    font-size: calc(var(--fs-xs) * 0.9);
    color: var(--gray);
    font-style: italic;
}

/* Footer */
.footer {
    padding: var(--space-lg) 0;
    background-color: var(--primary-dark);
    color: white;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    max-width: 1400px;
    margin: 0 auto;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: var(--fs-md);
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: white;
}

.footer-text {
    font-size: var(--fs-xs);
    opacity: 0.8;
    margin-bottom: var(--space-sm);
    line-height: 1.5;
}

.footer-heading {
    font-weight: 500;
    font-size: var(--fs-sm);
    margin-bottom: var(--space-sm);
    position: relative;
    padding-bottom: 10px;
    color: white;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    font-size: var(--fs-xs);
    opacity: 0.8;
    transition: var(--transition);
    color: white;
}

.footer-link:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer-bottom {
    margin-top: var(--space-lg);
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: calc(var(--fs-xs) * 0.9);
    opacity: 0.7;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        padding: 0 var(--space-sm);
    }

    .hero-image-wrapper {
        order: 1;
        justify-content: center;
        padding-left: 0;
        margin-bottom: var(--space-md);
    }

    .hero-content-wrapper {
        order: 2;
        padding-right: 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .expertise-list {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    :root {
        --space-md: clamp(1.5rem, 3vw, 2.5rem);
        --space-lg: clamp(2.5rem, 5vw, 4rem);
        --space-xl: clamp(4rem, 7vw, 6rem);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }

    .benefit-card, .service-card, .work-item {
        max-width: 500px;
        margin: 0 auto;
    }

    .form-footer {
        flex-direction: column;
        align-items: center;
    }

    .form-note {
        margin-bottom: 10px;
       text-align: center;
   }

   .banner-content {
       flex-direction: column;
       text-align: center;
   }
}
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: white;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideIn 0.3s ease;
}

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

.modal-large {
    width: 800px;
}

.modal-message {
    text-align: center;
    max-width: 400px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray);
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background-color: var(--light);
    color: var(--primary);
}

.modal-body {
    line-height: 1.6;
}

.modal-body h3 {
    color: var(--primary);
    margin-top: var(--space-md);
    margin-bottom: var(--space-xs);
}

.modal-body h4 {
    color: var(--dark);
    margin-top: var(--space-sm);
    margin-bottom: var(--space-xs);
}

.modal-body ul {
    margin-left: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.modal-body li {
    margin-bottom: 8px;
}

.privacy-footer {
    margin-top: var(--space-md);
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--gray);
    font-size: var(--fs-xs);
}

/* Cookie Banner Styles */
.cookie-banner {
    max-width: 600px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    left: auto;
    top: auto;
    background-color: white;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.cookie-text h3 {
    font-size: var(--fs-sm);
    margin-bottom: var(--space-xs);
    color: var(--primary);
}

.cookie-text p {
    font-size: var(--fs-xs);
    color: var(--gray);
    margin-bottom: var(--space-sm);
}

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

.cookie-actions {
    display: flex;
    gap: var(--space-xs);
    justify-content: flex-end;
}

/* Message Modal */
.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-sm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.modal-icon.success {
    background-color: rgba(106, 162, 132, 0.1);
    color: var(--success);
}

.modal-icon.error {
    background-color: rgba(218, 127, 127, 0.1);
    color: var(--alert);
}

#modalTitle {
    font-size: var(--fs-md);
    margin-bottom: var(--space-xs);
    color: var(--dark);
}

#modalMessage {
    font-size: var(--fs-sm);
    color: var(--gray);
    margin-bottom: var(--space-md);
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        right: 10px;
        left: 10px;
        bottom: 10px;
        max-width: none;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
    
    .modal-large {
        width: 100%;
    }
}