/* styles.css */

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    color: #3A2C1F;
    line-height: 1.6;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo,
.hero-badge,
.section-title {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 75%;
}

@media (max-width: 768px) {
    .container {
        width: 90%;
    }
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #E8D9C5;
    border-top-color: #8B5A2B;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader-text {
    font-size: 18px;
    color: #8B5A2B;
    font-weight: 500;
}

.dot-animation::after {
    content: '';
    animation: dots 1.5s infinite;
}

@keyframes dots {

    0%,
    20% {
        content: '.';
    }

    40%,
    60% {
        content: '..';
    }

    80%,
    100% {
        content: '...';
    }
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 350px;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    padding: 25px;
}

.cookie-icon {
    font-size: 32px;
    color: #8B5A2B;
    margin-bottom: 15px;
}

.cookie-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #3A2C1F;
}

.cookie-content p {
    font-size: 14px;
    color: #7D6B5A;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #8B5A2B;
    color: #FFFFFF;
}

.cookie-btn.accept:hover {
    background-color: #6B441E;
}

.cookie-btn.reject {
    background-color: #E8D9C5;
    color: #4A5C68;
}

.cookie-btn.reject:hover {
    background-color: #D8C9B5;
}

/* Advertisement Banner */
.ad-banner {
    background-color: #F8F2E9;
    border-bottom: 1px solid #E8D9C5;
    padding: 8px 0;
    text-align: center;
    font-size: 12px;
    color: #7D6B5A;
}

.ad-banner p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ad-banner i {
    color: #8B5A2B;
}

/* Header - without navbar */
.header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #3A2C1F;
    cursor: pointer;
    padding: 5px;
}

.logo {
    text-decoration: none;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #3A2C1F;
    font-family: 'Libre Baskerville', serif;
    white-space: nowrap;
}

.logo-highlight {
    color: #8B5A2B;
    font-weight: 700;
}

.desktop-nav {
    display: block;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: #5A4A3A;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #8B5A2B;
}

.cta-btn {
    background-color: #8B5A2B;
    color: #FFFFFF;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.cta-btn:hover {
    background-color: #6B441E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 90, 43, 0.3);
}

/* Mobile Sidebar Drawer */
.sidebar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.sidebar-wrapper.active {
    opacity: 1;
    visibility: visible;
}

.sidebar {
    position: absolute;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100%;
    background-color: #FFFFFF;
    transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    padding: 30px;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.1);
}

.sidebar-wrapper.active .sidebar {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.sidebar-header .logo {
    font-size: 22px;
}

.sidebar-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #3A2C1F;
    cursor: pointer;
}

.mobile-nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu ul li {
    margin-bottom: 25px;
}

.mobile-nav-menu ul li a {
    text-decoration: none;
    color: #3A2C1F;
    font-size: 18px;
    font-weight: 500;
    display: block;
    transition: color 0.3s ease;
}

.mobile-nav-menu ul li a:hover {
    color: #8B5A2B;
}

.sidebar-cta-li {
    margin-top: 20px;
}

.sidebar-cta {
    background-color: #8B5A2B;
    color: #FFFFFF !important;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }
}

@media (max-width: 768px) {
    .header-right {
        display: none;
    }
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F2E9 100%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-block;
    background-color: rgba(139, 90, 43, 0.1);
    color: #8B5A2B;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #3A2C1F;
    margin-top: 0;
}

.hero-title .highlight {
    color: #8B5A2B;
}

.hero-description {
    font-size: 18px;
    color: #7D6B5A;
    margin-bottom: 20px;
    line-height: 1.6;
    margin-top: 0;
}

.price-tag {
    background-color: #8B5A2B;
    display: inline-flex;
    align-items: baseline;
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    gap: 5px;
}

.price-label {
    color: #FFFFFF;
    font-size: 14px;
    opacity: 0.9;
}

.price-value {
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 700;
}

.price-note {
    color: #FFFFFF;
    font-size: 12px;
    opacity: 0.8;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #5A4A3A;
}

.hero-features i {
    color: #8B5A2B;
    font-size: 20px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #8B5A2B;
    color: #FFFFFF;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
}

.hero-cta:hover {
    background-color: #6B441E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 90, 43, 0.3);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.trust-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: #FFFFFF;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-badge i {
    font-size: 24px;
    color: #8B5A2B;
}

.trust-badge span {
    font-weight: 600;
    color: #3A2C1F;
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 42px;
    }

    .trust-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 20px;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #3A2C1F;
    margin-bottom: 15px;
    margin-top: 0;
}

.section-title .highlight {
    color: #8B5A2B;
}

.section-subtitle {
    font-size: 18px;
    color: #7D6B5A;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.about-text p {
    margin-bottom: 20px;
    color: #7D6B5A;
    font-size: 16px;
    line-height: 1.7;
    margin-top: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #8B5A2B;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #7D6B5A;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.value-card {
    background-color: #F8F2E9;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.value-card i {
    font-size: 32px;
    color: #8B5A2B;
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #3A2C1F;
    margin-top: 0;
}

.value-card p {
    font-size: 14px;
    color: #7D6B5A;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background-color: #F8F2E9;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(139, 90, 43, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(139, 90, 43, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 30px;
    color: #8B5A2B;
}

.benefit-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #3A2C1F;
    margin-top: 0;
}

.benefit-card p {
    font-size: 14px;
    color: #7D6B5A;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background-color: #F8F2E9;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(139, 90, 43, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 30px;
    color: #8B5A2B;
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #3A2C1F;
    margin-top: 0;
}

.feature-item p {
    font-size: 14px;
    color: #7D6B5A;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Specs Section */
.specs {
    padding: 60px 0;
    background: linear-gradient(135deg, #3A2C1F 0%, #2A1C0F 100%);
}

.specs-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.specs-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
    color: #3A2C1F;
    margin-top: 0;
}

.specs-title .highlight {
    color: #8B5A2B;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    padding: 15px;
    border-bottom: 1px solid #E8D9C5;
}

.spec-label {
    font-size: 14px;
    color: #7D6B5A;
    margin-bottom: 5px;
    font-weight: 500;
}

.spec-value {
    font-size: 16px;
    color: #3A2C1F;
    font-weight: 600;
}

.price-highlight {
    color: #8B5A2B;
    font-size: 20px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .specs-grid {
        grid-template-columns: 1fr;
    }
}

/* Interior Section */
.interior {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.interior-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.interior-card {
    text-align: center;
    padding: 30px;
    background-color: #F8F2E9;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.interior-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.interior-card i {
    font-size: 40px;
    color: #8B5A2B;
    margin-bottom: 15px;
}

.interior-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #3A2C1F;
    margin-top: 0;
}

.interior-card p {
    font-size: 14px;
    color: #7D6B5A;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .interior-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #F8F2E9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 90, 43, 0.1);
}

.testimonial-rating {
    margin-bottom: 15px;
    color: #FFD700;
}

.testimonial-rating i {
    margin-right: 2px;
}

.testimonial-text {
    font-size: 15px;
    color: #5A4A3A;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    margin-top: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar i {
    font-size: 40px;
    color: #8B5A2B;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #3A2C1F;
    margin-bottom: 5px;
    margin-top: 0;
}

.author-info p {
    font-size: 14px;
    color: #7D6B5A;
    margin: 0;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #F8F2E9;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #F0E8DD;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: #3A2C1F;
    margin: 0;
}

.faq-question i {
    color: #8B5A2B;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 20px;
}

.faq-answer p {
    color: #7D6B5A;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
}

/* Return Policy Section */
.return-policy {
    padding: 60px 0;
    background: linear-gradient(135deg, #8B5A2B 0%, #6B441E 100%);
    color: #FFFFFF;
}

.policy-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.policy-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.policy-title {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 0;
}

.policy-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
    margin-top: 0;
}

.policy-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-item i {
    font-size: 18px;
}

/* Footer */
.footer {
    background-color: #3A2C1F;
    color: #FFFFFF;
    padding: 60px 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

.footer h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #FFFFFF;
    margin-top: 0;
    font-family: 'Libre Baskerville', serif;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #E8D9C5;
    font-size: 15px;
}

.footer ul li i {
    color: #8B5A2B;
    width: 20px;
}

.footer a {
    color: #E8D9C5;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #8B5A2B;
}

.footer-disclaimer {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #C0B5AA;
    margin: 0;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #A59A90;
}

.footer-copyright p {
    margin: 0;
}

/* Modal Styles */
.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-container.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background-color: #FFFFFF;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 12px;
    position: relative;
    padding: 40px;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-container.active .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #7D6B5A;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: #3A2C1F;
}

.modal-title {
    font-size: 24px;
    color: #8B5A2B;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #8B5A2B;
    margin-top: 0;
    font-family: 'Libre Baskerville', serif;
}

.modal-content {
    color: #5A4A3A;
    line-height: 1.7;
}

.modal-content h3 {
    color: #3A2C1F;
    font-size: 18px;
    margin: 20px 0 10px;
}

.modal-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.modal-content p {
    margin: 0 0 10px;
}

/* Utility Classes */
.highlight {
    color: #8B5A2B;
}