﻿@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
    --primary: #285A48;
    --primary-light: #408A71;
    --primary-lighter: #B0E4CC;
    --primary-lightest: #E6F5EE;

    --text-dark: #091413;
    --text-muted: #4B5563;
    --text-light: #F9FAFB;

    --bg-light: #FFFFFF;
    --bg-gray: #F3F6F5;

    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- Base Reset & Typography --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-gray);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
    color: var(--text-dark);
}

p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
    box-shadow: 0 4px 6px -1px rgba(40, 90, 72, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(40, 90, 72, 0.4);
    color: var(--text-light);
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--text-light);
}

.btn-outline-light {
    border-color: var(--bg-light);
    color: var(--bg-light);
}

.btn-outline-light:hover {
    background-color: var(--bg-light);
    color: var(--primary);
}

.btn-text {
    background: transparent;
    color: var(--primary);
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-text:hover {
    color: var(--primary-light);
    gap: 0.8rem;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    max-width: 1600px;
    margin: 0 auto;
}

.nav-logo {
    height: 75px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-right: auto;
    margin-left: 40px;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-light);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0.5rem 0;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    min-width: 220px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-muted);
    font-weight: 500;
}

.dropdown-menu li a:hover {
    background-color: var(--primary-lightest);
    color: var(--primary);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    z-index: 1100;
    position: relative;
    padding: 8px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(9, 20, 19, 0.85) 0%, rgba(40, 90, 72, 0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    color: var(--text-light);
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    animation: slideUp 1s ease forwards;
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    animation: slideUp 1s ease forwards 0.2s;
    opacity: 0;
}

.hero-button-group {
    display: flex;
    gap: 1.5rem;
    animation: slideUp 1s ease forwards 0.4s;
    opacity: 0;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    animation: slideUp 1s ease forwards 0.6s;
    opacity: 0;
    text-align: left;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-header {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-lighter);
    margin: 0;
    line-height: 1.2;
}

.feature-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: 1.5;
}

/* --- Section Formatting --- */
.section-padding {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 1.5rem auto 4rem;
}

/* --- Schemes Grid --- */
.schemes-section {
    background-color: var(--primary-lightest);
}

.grid-card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: left;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    z-index: -1;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .btn-text,
.service-card:hover .card-icon {
    color: var(--text-light);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

/* --- Benefits Section --- */
.benefits-section {
    background-color: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-content .section-title::after {
    left: 0;
    transform: none;
}

.benefits-list {
    list-style: none;
    margin-top: 2.5rem;
}

.benefits-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.b-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-lighter);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.b-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.b-text p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* UI Mockup Animation */
.app-mockup {
    background-color: var(--bg-gray);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 8px solid #E5E7EB;
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
}

.app-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.mockup-header span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #D1D5DB;
}

.mockup-header span:nth-child(1) {
    background-color: #ef4444;
}

.mockup-header span:nth-child(2) {
    background-color: #f59e0b;
}

.mockup-header span:nth-child(3) {
    background-color: #10b981;
}

.mockup-body {
    background: white;
    padding: 20px;
    border-radius: 12px;
    height: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.skeleton-chart {
    height: 100px;
    background: linear-gradient(90deg, var(--primary-lighter) 0%, var(--primary-light) 100%);
    border-radius: 8px;
}

.skeleton-lines div {
    height: 12px;
    background-color: var(--bg-gray);
    border-radius: 6px;
    margin-bottom: 8px;
}

.skeleton-lines div:nth-child(1) {
    width: 100%;
}

.skeleton-lines div:nth-child(2) {
    width: 80%;
}

.skeleton-lines div:nth-child(3) {
    width: 60%;
}

.skeleton-box {
    flex-grow: 1;
    background-color: var(--primary-lightest);
    border-radius: 8px;
}


/* --- Call to Action Banner --- */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 5rem 0;
    color: var(--text-light);
}

.cta-banner h2 {
    color: var(--text-light);
    font-size: 2.5rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.cta-shake {
    background-color: var(--bg-light);
    color: var(--primary);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.cta-shake:hover {
    background-color: var(--primary-lightest);
    color: var(--primary);
    animation: bounce 0.5s ease;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* --- Footer --- */
.footer {
    background-color: var(--text-dark);
    color: #9CA3AF;
    padding: 5rem 0 2rem;
}

.footer h4 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 120px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.footer-about p {
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: #1F3F34;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #9CA3AF;
}

.footer-links a:hover {
    color: var(--primary-lighter);
    padding-left: 5px;
}

.footer-contact ul {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid #1F3F34;
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: #9CA3AF;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--primary-lighter);
}


/* --- Animations (Scroll Reveal) --- */
.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* --- Responsive Design --- */
@media (max-width: 992px) {

    .benefits-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .benefits-content .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .benefits-content {
        text-align: center;
    }

    .benefits-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-logo {
        height: 50px;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        transform: none;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--bg-light);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 90px;
        transition: left 0.3s ease,
        overflow-y: auto;
        z-index: 999;
        box-shadow: none;
    }

    .nav-menu.active {
        left: 0;
        transform: none;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: var(--bg-gray);
        display: none;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .nav-buttons {
        flex-direction: column;
        width: 80%;
        margin: 2rem auto;
    }

    .nav-buttons .btn {
        width: 100%;
    }

    .menu-toggle {
        display: block;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}
/* Global Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    animation: slideUp 0.4s ease;
    font-family: 'Outfit', sans-serif;
    box-sizing: border-box;
}

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

.close-modal {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #9CA3AF;
    cursor: pointer;
    transition: color 0.3s;
}

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

.modal-header { margin-bottom: 25px; }
.modal-header h2 { font-size: 1.8rem; color: var(--text-dark); margin: 0 0 5px 0; }
.modal-header p { color: var(--text-muted); margin: 0; }

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

.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #374151; font-size: 0.9rem; }
.form-control { width: 100%; padding: 12px 16px; border: 1px solid #E5E7EB; border-radius: 10px; font-size: 1rem; transition: border-color 0.3s; box-sizing: border-box; }
.form-control:focus { outline: none; border-color: var(--primary); }

.success-modal-content {
    text-align: center;
    padding: 20px 0;
    display: none;
}
.success-modal-content i { font-size: 4rem; color: #10B981; margin-bottom: 20px; }
.success-modal-content h3 { font-size: 1.5rem; margin-bottom: 10px; color: #111827; }
.success-modal-content p { color: #6B7280; line-height: 1.6; }

/* Contact Checkbox Buttons */
.contact-btn {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #d1d5db;
    border-radius: 20px;
    background-color: #f9fafb;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s;
    color: #4b5563;
    font-weight: 500;
}
.contact-btn input[type="checkbox"] {
    display: none;
}
.contact-btn:has(input:checked) {
    background-color: #0d9488;
    color: white;
    border-color: #0d9488;
}

/* Mobile Responsiveness for Modal */
@media (max-width: 600px) { 
    .form-grid { grid-template-columns: 1fr; }
    .modal-content {
        padding: 25px 20px;
        margin: 10% auto;
        width: 95%;
    }
    .close-modal {
        right: 15px;
        top: 15px;
    }
}


/* Wizard Tabs */
.wizard-tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    background-color: #f3f4f6;
    border-radius: 30px;
    padding: 5px;
}

.wizard-tab {
    flex: 1;
    text-align: center;
    padding: 10px 5px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
    border-radius: 25px;
    cursor: default;
    transition: all 0.3s ease;
}

.wizard-tab.active {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.tab-num {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.3);
    margin-right: 5px;
    font-size: 0.8rem;
}

.wizard-tab:not(.active) .tab-num {
    background-color: #d1d5db;
    color: white;
}

.wizard-step {
    animation: fadeIn 0.4s ease;
}

.wizard-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.wizard-actions.right {
    justify-content: flex-end;
}

@media (max-width: 600px) {
    .wizard-tab {
        font-size: 0.75rem;
        padding: 8px 2px;
    }
    .tab-num {
        display: none;
    }
}
.step-hidden {
    display: none !important;
}





/* Mobile nav overlay (tap outside to close) */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 998;
}
.nav-overlay.active {
    display: block;
}


/* Page wrapper — prevents ANY horizontal overflow on iOS */
#page-wrapper {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
}


.future-building-img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}
.future-building-img:hover {
    transform: translateY(-5px);
}

.benefits-images {
    position: relative;
    width: 100%;
    height: 550px;
}

.future-img {
    position: absolute;
    width: 70%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, z-index 0.3s ease;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.future-img:nth-child(1) {
    top: -50px;
    right: 0;
    z-index: 1;
}

.future-img:nth-child(2) {
    bottom: -50px;
    left: 0;
    z-index: 2;
}

.future-img:hover {
    transform: translateY(-10px) scale(1.05);
    z-index: 3;
}

@media (max-width: 900px) {
    .benefits-images {
        height: 400px;
    }
    .future-img:nth-child(1) {
        top: -20px;
    }
    .future-img:nth-child(2) {
        bottom: -20px;
    }
}
@media (max-width: 600px) {
    .benefits-images {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-top: 30px;
    }
    .future-img {
        position: relative;
        width: 100%;
        top: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
    }
}



/* Drawer Styles */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 500px;
    height: 100%;
    background: #fff;
    z-index: 1001;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.drawer.open {
    right: 0;
}

.drawer-header {
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--light-bg);
}

.drawer-header h2 {
    margin: 0;
    color: var(--primary);
    font-size: 1.5rem;
}

.close-drawer {
    font-size: 28px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close-drawer:hover {
    color: var(--accent);
}

.drawer-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

.drawer-body h3 {
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.drawer-body p { margin-bottom: 20px; color: var(--text-muted); line-height: 1.6; }

.drawer-body ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.drawer-body ul li { margin-bottom: 10px; color: var(--text-muted); line-height: 1.6; }

.drawer-body ul li strong {
    color: var(--text-dark);
}
