/* CSS Variables for color palette */
:root {
    --primary-color: #0B1D33;
    --secondary-color: #E8F9FD;
    --accent-color: #FFB703;
    --neutral-color: #F6F6F6;
    --text-color: #212121;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --gray-dark: #343a40;
    --border-color: #dee2e6;
    --shadow-light: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 16px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    padding-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Better contrast for text in different sections */
.section p {
    color: var(--text-color);
    opacity: 0.9;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1rem;
    opacity: 1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    min-width: 120px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
    font-weight: 700;
}

.btn-primary:hover {
    background-color: #e6a102;
    border-color: #e6a102;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 700;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-text {
    margin-left: 8px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

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

/* Main sections */
.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2f47 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./img/bmGFrr.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.95);
}

.hero-cta {
    margin-top: 2rem;
}

/* Grid system */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Cards */
.card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    text-align: center;
}

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

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.card-text {
    color: var(--text-color);
    line-height: 1.6;
    opacity: 0.8;
}

/* Form styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 183, 3, 0.2);
}

.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    background-color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.form-select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 183, 3, 0.2);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    accent-color: var(--accent-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.4;
}

.form-checkbox label a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
    transition: var(--transition);
}

.form-checkbox label a:hover {
    color: var(--accent-color);
}

/* Testimonials */
.testimonials {
    background-color: var(--secondary-color);
    padding: 4rem 0;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    opacity: 0.85;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
}

.testimonial-company {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Contact section */
.contact-form {
    background-color: var(--white);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: var(--shadow-light);
}

.contact-info p {
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 1rem;
}

/* Google Maps responsive */
.map-container {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.95);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.cookie-content p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

/* ==== FAQ ACCORDION - PURE CSS WITH RADIO BUTTONS ==== */

/* FAQ Wrapper */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* FAQ Accordion Container */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* FAQ Item */
.faq-item {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(11, 29, 51, 0.1);
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
    border-color: var(--accent-color);
}

/* Hide Radio Inputs */
.faq-input {
    display: none;
}

/* FAQ Header (Label) */
.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: var(--white);
    transition: all 0.4s ease;
    user-select: none;
    border: none;
    width: 100%;
    text-align: left;
    position: relative;
}

.faq-header:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* FAQ Title */
.faq-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.4;
    margin-right: 1rem;
    flex: 1;
}

/* FAQ Toggle Icon */
.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 183, 3, 0.1);
    flex-shrink: 0;
}

/* FAQ Body */
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--white);
}

/* FAQ Content */
.faq-content {
    padding: 0 2rem 2rem;
    color: var(--text-color);
    line-height: 1.6;
    opacity: 0.9;
}

.faq-content p {
    margin: 0;
    font-size: 0.95rem;
}

/* ==== CHECKED STATES ==== */

/* When FAQ is opened */
.faq-input:checked + .faq-header {
    background-color: var(--secondary-color);
    border-bottom: 1px solid rgba(11, 29, 51, 0.1);
}

.faq-input:checked + .faq-header .faq-title {
    color: var(--primary-color);
    font-weight: 600;
}

.faq-input:checked + .faq-header .faq-toggle {
    transform: rotate(45deg);
    color: var(--primary-color);
    background: rgba(11, 29, 51, 0.1);
}

.faq-input:checked + .faq-header + .faq-body {
    max-height: 200px;
}

/* ==== ACCESSIBILITY ==== */

/* Focus States */
.faq-input:focus + .faq-header {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.faq-input:focus-visible + .faq-header {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(255, 183, 3, 0.2);
}

.faq-header:focus-within {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Keyboard Navigation */
.faq-header:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    .faq-item,
    .faq-header,
    .faq-body,
    .faq-toggle,
    .faq-close-btn {
        transition: none;
    }
    
    .faq-item:hover {
        transform: none;
    }
    
    .faq-item:active {
        transform: none;
    }
    
    .faq-close-btn:hover {
        transform: none;
    }
    
    .faq-close-btn:active {
        transform: none;
    }
}

/* ==== ADDITIONAL ENHANCEMENTS ==== */

/* Smooth scrolling for better UX */
html {
    scroll-behavior: smooth;
}

/* Enhanced visual feedback */
.faq-item:active {
    transform: scale(0.998);
}

/* Improved spacing and typography */
.faq-accordion {
    margin-bottom: 2rem;
}

/* Better text rendering */
.faq-title {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.faq-content {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Improved print styles */
@media print {
    .faq-item {
        page-break-inside: avoid;
        break-inside: avoid;
    }
    
    .faq-body {
        max-height: none !important;
    }
    
    .faq-toggle {
        display: none;
    }
    
    .faq-close-wrapper {
        display: none;
    }
}

/* Custom scrollbar for content if needed */
.faq-content::-webkit-scrollbar {
    width: 4px;
}

.faq-content::-webkit-scrollbar-track {
    background: var(--neutral-color);
}

.faq-content::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 2px;
}

/* Selection styling */
.faq-title::selection {
    background: rgba(255, 183, 3, 0.3);
    color: var(--primary-color);
}

.faq-content::selection {
    background: rgba(255, 183, 3, 0.3);
    color: var(--text-color);
}

/* Close all FAQ items functionality */
.faq-close-wrapper {
    text-align: center;
    margin-top: 1.5rem;
}

.faq-close-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 0.85rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-close-btn:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 183, 3, 0.3);
}

.faq-close-btn:active {
    transform: translateY(0);
}

/* Focus states for close button */
.faq-close-btn:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .faq-item {
        border: 2px solid var(--primary-color);
    }
    
    .faq-toggle {
        border: 1px solid var(--accent-color);
    }
    
    .faq-close-btn {
        border: 2px solid var(--accent-color);
    }
}

/* Dark mode support (if needed) */
@media (prefers-color-scheme: dark) {
    .faq-item {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .faq-header {
        background: rgba(255, 255, 255, 0.05);
    }
    
    .faq-body {
        background: rgba(255, 255, 255, 0.05);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        padding-top: 6rem;
    }
    
    .header {
        padding: 0.5rem 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-list {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
    }
    
    .logo-link {
        font-size: 1rem;
    }
    
    .hero {
        padding: 4rem 0 2rem;
        margin-top: 0;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .hero-cta {
        margin-top: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    /* FAQ Mobile Adjustments */
    .faq-wrapper {
        padding: 0 0.5rem;
    }
    
    .faq-header {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-title {
        font-size: 1rem;
        margin-right: 0.8rem;
    }
    
    .faq-toggle {
        width: 22px;
        height: 22px;
        font-size: 1.3rem;
    }
    
    .faq-content {
        padding: 0 1.5rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .faq-input:checked + .faq-header + .faq-body {
        max-height: 150px;
    }
    
    .faq-close-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 5.5rem;
    }
    
    .header {
        padding: 0.3rem 0;
    }
    
    .nav-list {
        gap: 0.3rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.3rem 0;
    }
    
    .hero {
        padding: 3.5rem 0 2rem;
        margin-top: 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
        padding: 0 1rem;
    }
    
    .hero-cta {
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .hero-cta .btn {
        display: block;
        margin: 0 auto 1rem;
        width: 90%;
        max-width: 280px;
        text-align: center;
        padding: 14px 20px;
    }
    
    .hero-cta .btn:last-child {
        margin-bottom: 0;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .map-container {
        height: 250px;
        margin-bottom: 1rem;
    }
    
    /* FAQ Mobile Adjustments for Small Screens */
    .faq-wrapper {
        padding: 0 0.3rem;
    }
    
    .faq-header {
        padding: 1rem 1.2rem;
    }
    
    .faq-title {
        font-size: 0.9rem;
        margin-right: 0.6rem;
        line-height: 1.3;
    }
    
    .faq-toggle {
        width: 20px;
        height: 20px;
        font-size: 1.2rem;
    }
    
    .faq-content {
        padding: 0 1.2rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .faq-input:checked + .faq-header + .faq-body {
        max-height: 120px;
    }
    
    .faq-close-btn {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Extra small screens (max-width: 360px) */
@media (max-width: 360px) {
    body {
        padding-top: 6rem;
    }
    
    .hero {
        padding: 4rem 0 2rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
        padding: 0 1.5rem;
    }
    
    .hero-cta {
        padding: 0 1.5rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    /* FAQ Mobile Adjustments for Extra Small Screens */
    .faq-wrapper {
        padding: 0 0.2rem;
    }
    
    .faq-header {
        padding: 0.8rem 1rem;
    }
    
    .faq-title {
        font-size: 0.85rem;
        margin-right: 0.5rem;
        line-height: 1.2;
    }
    
    .faq-toggle {
        width: 18px;
        height: 18px;
        font-size: 1.1rem;
    }
    
    .faq-content {
        padding: 0 1rem 1rem;
        font-size: 0.8rem;
    }
    
    .faq-input:checked + .faq-header + .faq-body {
        max-height: 100px;
    }
    
    .faq-close-btn {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }
.gap-5 { gap: 3rem; } 