/* ============================================================
   RentAgreementPK.online - Main Stylesheet
   Mobile-first, modern, clean design
   ============================================================ */

/* ============ CSS VARIABLES ============ */
:root {
    --primary: #1a73e8;
    --primary-dark: #1557b0;
    --primary-light: #e8f0fe;
    --secondary: #34a853;
    --secondary-dark: #2d8f47;
    --accent: #f9ab00;
    --danger: #ea4335;
    --text: #1a1a2e;
    --text-light: #5f6368;
    --text-muted: #9aa0a6;
    --bg: #ffffff;
    --bg-alt: #f8f9fa;
    --bg-dark: #1a1a2e;
    --border: #e0e0e0;
    --border-light: #f0f0f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --max-width: 1200px;
    --header-height: 70px;
    --transition: 0.3s ease;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============ RESET & BASE ============ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul, ol { list-style: none; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
    margin-bottom: 0.5em;
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; color: var(--text-light); }

/* ============ CONTAINER ============ */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ COOKIE BANNER ============ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: #fff;
    padding: 16px 0;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.cookie-banner p { color: #ccc; margin: 0; font-size: 14px; }
.cookie-banner a { color: var(--accent); }

/* ============ HEADER ============ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
}
.logo:hover { color: var(--primary); }
.logo-icon { font-size: 1.6rem; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav a {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    transition: all var(--transition);
}
.main-nav a:hover, .main-nav a.active {
    color: var(--primary);
    background: var(--primary-light);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.4;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
}
.btn-primary:hover { color: #fff; box-shadow: 0 6px 20px rgba(26,115,232,0.4); }

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: #fff;
}
.btn-secondary:hover { color: #fff; box-shadow: 0 6px 20px rgba(52,168,83,0.4); }

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }

.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ============ CARDS ============ */
.card {
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition);
}
.card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.card-text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.card-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--primary-light);
    color: var(--primary);
}

/* ============ GRID LAYOUTS ============ */
.grid {
    display: grid;
    gap: 24px;
}
.grid-2 { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

/* ============ SECTIONS ============ */
.section {
    padding: 60px 0;
}
.section-alt {
    background: var(--bg-alt);
}
.section-dark {
    background: var(--bg-dark);
    color: #fff;
}
.section-dark p, .section-dark h2, .section-dark h3 {
    color: #fff;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}
.section-header p {
    font-size: 1.05rem;
}

/* ============ HERO ============ */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #e8f0fe 0%, #f0f4ff 50%, #e3f2fd 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(26,115,232,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content {
    max-width: 680px;
    position: relative;
    z-index: 1;
}
.hero h1 {
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 1.15rem;
    margin-bottom: 28px;
    color: var(--text-light);
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(0,0,0,0.08);
}
.hero-stat {
    text-align: center;
}
.hero-stat .number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}
.hero-stat .label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============ HOW IT WORKS ============ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    counter-reset: step;
}
.step-item {
    text-align: center;
    padding: 28px 20px;
    position: relative;
}
.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 16px;
}
.step-item h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}
.step-item p {
    font-size: 0.88rem;
}

/* ============ FORMS ============ */
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: var(--font);
    transition: border-color var(--transition), box-shadow var(--transition);
    background: var(--bg);
    color: var(--text);
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,115,232,0.15);
}
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235f6368' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}
textarea.form-control {
    min-height: 120px;
    resize: vertical;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ============ ALERTS & MESSAGES ============ */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}
.alert-success {
    background: #e6f4ea;
    color: #1e7e34;
    border: 1px solid #c3e6cb;
}
.alert-error {
    background: #fce8e6;
    color: #c5221f;
    border: 1px solid #f5c6cb;
}
.alert-info {
    background: var(--primary-light);
    color: var(--primary-dark);
    border: 1px solid #b8d4f8;
}
.alert-warning {
    background: #fef7e0;
    color: #b06000;
    border: 1px solid #f5e6b8;
}

/* ============ AGREEMENT PREVIEW ============ */
.agreement-preview {
    background: #fff;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Times New Roman', Georgia, serif;
    line-height: 1.8;
}
.agreement-preview h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.agreement-preview .agreement-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 32px;
    font-style: italic;
}
.agreement-preview .clause {
    margin-bottom: 20px;
    text-align: justify;
}
.agreement-preview .clause strong {
    color: var(--text);
}
.agreement-preview .signature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    padding-top: 20px;
}
.signature-line {
    border-top: 1px solid #333;
    padding-top: 8px;
    text-align: center;
    font-size: 0.9rem;
}
.agreement-preview p {
    color: var(--text);
}

/* ============ BREADCRUMBS ============ */
.breadcrumbs {
    padding: 16px 0;
    font-size: 0.85rem;
}
.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
}
.breadcrumbs li::after {
    content: '›';
    margin: 0 8px;
    color: var(--text-muted);
}
.breadcrumbs li:last-child::after { display: none; }
.breadcrumbs li.active { color: var(--text-muted); }

/* ============ TOC ============ */
.toc {
    background: var(--bg-alt);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin-bottom: 32px;
}
.toc h3 {
    font-size: 0.95rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}
.toc ul { padding-left: 0; }
.toc li {
    margin-bottom: 6px;
    font-size: 0.9rem;
    padding-left: 16px;
    position: relative;
}
.toc li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* ============ FAQ ============ */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover {
    border-color: var(--primary);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    font-family: var(--font);
    gap: 12px;
}
.faq-question::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--primary);
    flex-shrink: 0;
    transition: var(--transition);
}
.faq-item.active .faq-question::after {
    content: '−';
}
.faq-answer {
    display: none;
    padding: 0 22px 18px;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}
.faq-item.active .faq-answer {
    display: block;
}

/* ============ BLOG ============ */
.blog-card {
    display: block;
    text-decoration: none;
    color: inherit;
}
.blog-card .card-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.blog-content {
    max-width: 760px;
    margin: 0 auto;
}
.blog-content h2 {
    margin-top: 36px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-light);
}
.blog-content h3 {
    margin-top: 28px;
    margin-bottom: 12px;
}
.blog-content ul, .blog-content ol {
    padding-left: 24px;
    margin-bottom: 16px;
}
.blog-content li {
    list-style: disc;
    margin-bottom: 6px;
    color: var(--text-light);
}
.blog-content ol li {
    list-style: decimal;
}
.blog-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 16px 20px;
    margin: 20px 0;
    background: var(--primary-light);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
}
.blog-content .disclaimer-box {
    background: #fef7e0;
    border: 1px solid #f5e6b8;
    border-radius: var(--radius);
    padding: 16px 20px;
    margin: 24px 0;
    font-size: 0.88rem;
    color: #b06000;
}

/* ============ AD SLOTS ============ */
.ad-slot {
    text-align: center;
    padding: 20px;
    margin: 16px 0;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ad-label {
    font-size: 0;
    visibility: hidden;
}

/* ============ FOOTER ============ */
.site-footer {
    background: var(--bg-dark);
    color: #ccc;
    padding: 60px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h3, .footer-col h4 {
    color: #fff;
    margin-bottom: 16px;
}
.footer-col h3 { font-size: 1.2rem; }
.footer-col h4 { font-size: 0.95rem; }
.footer-col p { color: #999; font-size: 0.88rem; }
.footer-col ul li {
    margin-bottom: 8px;
}
.footer-col ul li a {
    color: #999;
    font-size: 0.88rem;
    transition: color var(--transition);
}
.footer-col ul li a:hover {
    color: var(--accent);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
}
.footer-bottom p {
    color: #666;
    font-size: 0.82rem;
    margin-bottom: 8px;
}
.disclaimer-small {
    color: #888 !important;
    font-size: 0.8rem !important;
    max-width: 700px;
    margin: 0 auto 12px !important;
    line-height: 1.5 !important;
}

/* ============ SETTINGS / ADMIN ============ */
.admin-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: calc(100vh - var(--header-height));
}
.admin-sidebar {
    background: var(--bg-alt);
    border-right: 1px solid var(--border-light);
    padding: 24px 0;
}
.admin-sidebar a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition);
}
.admin-sidebar a:hover, .admin-sidebar a.active {
    background: var(--primary-light);
    color: var(--primary);
}
.admin-content {
    padding: 32px;
}
.admin-content h1 {
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}
.data-table th, .data-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
}
.data-table th {
    background: var(--bg-alt);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}
.data-table tr:hover td {
    background: var(--bg-alt);
}

/* ============ LOGIN ============ */
.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f0fe, #f0f4ff);
    padding: 20px;
}
.login-box {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-xl);
}
.login-box h1 {
    text-align: center;
    margin-bottom: 8px;
    font-size: 1.5rem;
}
.login-box p {
    text-align: center;
    margin-bottom: 28px;
}

/* ============ SETUP / GUIDE ============ */
.setup-page {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}
.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 8px;
    font-size: 0.92rem;
    font-weight: 500;
}
.check-pass {
    background: #e6f4ea;
    color: #1e7e34;
}
.check-fail {
    background: #fce8e6;
    color: #c5221f;
}

/* ============ TEMPLATE DETAIL ============ */
.template-clauses {
    counter-reset: clause;
}
.template-clauses .clause-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    counter-increment: clause;
}
.template-clauses .clause-item::before {
    content: 'Clause ' counter(clause) '.';
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 4px;
}
.template-clauses .clause-item p {
    margin: 0;
}

/* ============ TAGS ============ */
.tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--primary-light);
    color: var(--primary);
    margin-right: 6px;
    margin-bottom: 6px;
}
.tag-green { background: #e6f4ea; color: #1e7e34; }
.tag-orange { background: #fef7e0; color: #b06000; }

/* ============ INTERNAL LINKS BOX ============ */
.related-links {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 24px;
    margin: 32px 0;
}
.related-links h3 {
    font-size: 1rem;
    margin-bottom: 12px;
}
.related-links ul { padding-left: 0; }
.related-links li {
    margin-bottom: 6px;
    font-size: 0.9rem;
    padding-left: 20px;
    position: relative;
}
.related-links li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* ============ PRINT STYLES ============ */
@media print {
    .site-header, .site-footer, .breadcrumbs,
    .ad-slot, .cookie-banner, .btn,
    .no-print, .related-links {
        display: none !important;
    }
    body {
        font-size: 12pt;
        line-height: 1.6;
        color: #000;
    }
    .agreement-preview {
        border: none;
        padding: 0;
        box-shadow: none;
    }
    .site-main {
        padding: 0;
    }
    a { color: #000; text-decoration: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .admin-layout {
        grid-template-columns: 1fr;
    }
    .admin-sidebar {
        display: flex;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        padding: 12px 0;
    }
    .admin-sidebar a {
        white-space: nowrap;
        padding: 8px 16px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--bg);
        flex-direction: column;
        padding: 16px 20px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
    }
    .main-nav.open { display: flex; }
    .mobile-menu-btn { display: flex; }

    .hero { padding: 50px 0 40px; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }

    .section { padding: 40px 0; }

    .form-row { grid-template-columns: 1fr; }

    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .agreement-preview {
        padding: 28px 20px;
    }
    .agreement-preview .signature-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.6rem; }
    .btn { padding: 10px 20px; font-size: 0.9rem; }
    .btn-lg { padding: 12px 24px; }
    .container { padding: 0 16px; }
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-in {
    animation: fadeInUp 0.5s ease forwards;
}

/* ============ UTILITIES ============ */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.pt-1 { padding-top: 8px; }
.pb-1 { padding-bottom: 8px; }
.hidden { display: none; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.justify-between { justify-content: space-between; }
.items-center { align-items: center; }
