@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Raleway:wght@300;400;500;600&display=swap");

:root {
    --background: #faf8f5;
    --foreground: #2d2a24;
    --primary: #3d3630;
    --primary-foreground: #f7f4ef;
    --muted: #f0ede8;
    --muted-foreground: #8a8278;
    --border: #e2ddd6;
    --gold: #c8a97e;
    --gold-light: #dcc29e;
    --cream: #f5f0ea;
    --radius: 0.25rem;
    --font-display: "Playfair Display", Georgia, serif;
    --font-body: "Raleway", sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 0.02em;
    background-color: var(--background);
    color: var(--foreground);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.glamour-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.glamour-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.glamour-divider {
    width: 60px;
    height: 1px;
    background-color: var(--gold);
}

.glamour-heading {
    font-family: var(--font-display);
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--foreground);
}

.glamour-subheading {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.875rem 2.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--primary-foreground);
    box-shadow: 0 4px 20px rgba(200, 169, 126, 0.3);
}

.btn-primary:hover {
    background-color: var(--gold-light);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-foreground);
    border: 1px solid rgba(247, 244, 239, 0.4);
}

.btn-outline:hover {
    background-color: rgba(247, 244, 239, 0.1);
}

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

.btn-dark:hover {
    background-color: #2d2822;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.5s ease;
}

.site-header.transparent {
    background-color: transparent;
}

.site-header.solid {
    background-color: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.logo-name.light {
    color: var(--primary-foreground);
}
.logo-name.dark {
    color: var(--foreground);
}

.logo-tagline {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
}

.logo-tagline.light {
    color: rgba(247, 244, 239, 0.7);
}
.logo-tagline.dark {
    color: var(--gold);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link.light {
    color: rgba(247, 244, 239, 0.8);
}
.nav-link.light:hover {
    color: var(--primary-foreground);
}
.nav-link.light.active {
    color: var(--primary-foreground);
}
.nav-link.dark {
    color: var(--muted-foreground);
}
.nav-link.dark:hover {
    color: var(--foreground);
}
.nav-link.dark.active {
    color: var(--foreground);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.375rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 1.5rem;
    height: 1px;
    background-color: var(--primary-foreground);
    transition: all 0.3s ease;
}

.nav-toggle.dark span {
    background-color: var(--foreground);
}

.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translateY(5px);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-5px);
}

.nav-mobile {
    display: none;
    background-color: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--border);
    padding: 2rem 1.5rem;
    flex-direction: column;
    gap: 1.5rem;
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile .nav-link {
    color: var(--muted-foreground);
    font-size: 0.7rem;
}

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

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
}

/* ===== HERO SLIDESHOW ===== */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: var(--primary);
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 1.2s ease-in-out,
        visibility 1.2s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 8s ease-out;
    z-index: 1;
}

.hero-slide.active img {
    transform: scale(1.08);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(135deg, rgba(61, 54, 48, 0.8) 0%, rgba(61, 54, 48, 0.4) 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1.5rem;
}

.hero-content-inner {
    max-width: 48rem;
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.8s ease 0.3s,
        transform 0.8s ease 0.3s;
}

.hero-slide.active .hero-content-inner {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(247, 244, 239, 0.7);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 500;
    color: var(--primary-foreground);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    color: rgba(247, 244, 239, 0.7);
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 32rem;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
}

.hero-nav {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 20;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(247, 244, 239, 0.35);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

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

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(247, 244, 239, 0.15);
    color: var(--primary-foreground);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.15);
}

.hero-arrow-prev {
    left: 2rem;
    z-index: 30;
}
.hero-arrow-next {
    right: 2rem;
    z-index: 30;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-description {
        font-size: 0.95rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-arrow {
        display: none;
    }
}

/* ===== STATS ===== */
.stats-section {
    background-color: var(--cream);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 4rem 0;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .stat-value {
        font-size: 2.25rem;
    }
}

/* ===== SERVICES GRID ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .glamour-divider {
    margin: 1.5rem auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(61, 54, 48, 0.85) 0%,
        rgba(61, 54, 48, 0.15) 50%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.service-card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-foreground);
    margin-bottom: 0.5rem;
}

.service-card-desc {
    color: rgba(247, 244, 239, 0.7);
    font-size: 0.85rem;
    line-height: 1.6;
}

.text-center {
    text-align: center;
}
.mt-12 {
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .glamour-heading {
        font-size: 2rem;
    }
}

/* ===== BRAND STATEMENT ===== */
.brand-statement {
    padding: 3rem 0;
    text-align: center;
    background: var(--background);
}

.brand-statement p {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--foreground);
    line-height: 1.5;
    max-width: 48rem;
    margin: 0 auto;
    font-style: italic;
    font-weight: 400;
}

@media (max-width: 768px) {
    .brand-statement p {
        font-size: 1.2rem;
    }
}

/* ===== MISSION & VISION ===== */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 64rem;
    margin: 0 auto;
}

.mission-vision-card {
    background: var(--background);
    padding: 3rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.mission-vision-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.mv-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 50%;
    color: var(--gold);
}

.mv-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.mv-description {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .mission-vision-card {
        padding: 2rem;
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.cta-section .glamour-subheading {
    color: rgba(247, 244, 239, 0.5);
}

.cta-section .cta-description {
    color: rgba(247, 244, 239, 0.6);
    max-width: 32rem;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding-top: 8rem;
    padding-bottom: 4rem;
    background-color: var(--cream);
    text-align: center;
}

.page-header .glamour-divider {
    margin: 1.5rem auto 0;
}

.page-desc {
    color: var(--muted-foreground);
    max-width: 32rem;
    margin: 1.5rem auto 0;
    line-height: 1.7;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

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

.about-badge {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.about-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-text {
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.value-item {
    display: flex;
    gap: 1.5rem;
}

.value-bar {
    width: 4px;
    height: auto;
    background-color: var(--gold);
    flex-shrink: 0;
}

.value-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.value-desc {
    font-size: 0.85rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===== SERVICES PAGE ===== */
.service-section {
    padding: 6rem 0;
}

.service-section:nth-child(even) {
    background-color: var(--cream);
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-grid.reversed .service-image {
    order: 2;
}
.service-grid.reversed .service-info {
    order: 1;
}

.service-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

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

.service-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.service-title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.service-text {
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--gold);
    flex-shrink: 0;
}

.feature-label {
    font-size: 0.85rem;
    color: var(--muted-foreground);
}

.process-section {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.process-section .glamour-subheading {
    color: rgba(247, 244, 239, 0.5);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.process-step {
    font-family: var(--font-display);
    font-size: 3rem;
    color: rgba(220, 194, 158, 0.3);
    margin-bottom: 1rem;
}

.process-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.process-desc {
    color: rgba(247, 244, 239, 0.6);
    font-size: 0.85rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .service-grid.reversed .service-image {
        order: 1;
    }
    .service-grid.reversed .service-info {
        order: 2;
    }
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .service-title {
        font-size: 1.75rem;
    }
    .about-title {
        font-size: 1.75rem;
    }
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.contact-heading {
    font-family: var(--font-display);
    font-size: 1.875rem;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.contact-detail-value {
    color: var(--foreground);
    line-height: 1.6;
}

.contact-form-wrapper {
    background-color: var(--cream);
    padding: 3rem;
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--border);
    background-color: transparent;
    padding: 0.75rem 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--foreground);
    transition: border-color 0.3s ease;
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--gold);
}

.form-textarea {
    resize: none;
    min-height: 4rem;
}

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

.success-message {
    text-align: center;
    padding: 3rem 0;
}

.success-message h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.success-message p {
    color: var(--muted-foreground);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-form-wrapper {
        padding: 2rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding: 6rem 0;
}

.footer-brand-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(247, 244, 239, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 24rem;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(247, 244, 239, 0.5);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    font-size: 0.9rem;
    color: rgba(247, 244, 239, 0.7);
    transition: color 0.3s ease;
}

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

.footer-contact p {
    font-size: 0.9rem;
    color: rgba(247, 244, 239, 0.7);
    line-height: 1.6;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(247, 244, 239, 0.1);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(247, 244, 239, 0.4);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 200;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* ===== UTILITIES ===== */
.bg-cream {
    background-color: var(--cream);
}
.bg-primary {
    background-color: var(--primary);
}
.bg-background {
    background-color: var(--background);
}
.text-primary-foreground {
    color: var(--primary-foreground);
}
.text-muted-foreground {
    color: var(--muted-foreground);
}
.mb-3 {
    margin-bottom: 0.75rem;
}
.mb-4 {
    margin-bottom: 1rem;
}
.mb-6 {
    margin-bottom: 1.5rem;
}
.mb-8 {
    margin-bottom: 2rem;
}
.mb-16 {
    margin-bottom: 4rem;
}
.mt-6 {
    margin-top: 1.5rem;
}
