/* --------------------------------------------------
   VÄRVID JA DISAINISÜSTEEM (CSS Muutujad)
-------------------------------------------------- */
:root {
    --bg-primary: #FDFBF7;
    --bg-secondary: #F6EFEA;
    --color-primary: #D96B43;
    --color-primary-hover: #C25A33;
    --color-primary-light: #FBECE4;
    --color-secondary: #6A9E86;
    --color-secondary-hover: #578570;
    --color-secondary-light: #ECF5F0;
    --color-dark: #354F52;
    --color-text: #4F5E66;
    --color-white: #FFFFFF;
    --color-gray: #7F8C8D;
    --color-light-gray: #EAE3DC;
    
    --font-heading: 'Quicksand', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --shadow-subtle: 0 4px 15px rgba(53, 79, 82, 0.05);
    --shadow-medium: 0 10px 30px rgba(53, 79, 82, 0.08);
    --shadow-hover: 0 15px 35px rgba(53, 79, 82, 0.15);
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-full: 9999px;
}

/* --------------------------------------------------
   PÕHISTIILID
-------------------------------------------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    font-weight: 700;
    line-height: 1.25;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary-hover);
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --------------------------------------------------
   NUPUD (Buttons)
-------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 10px rgba(217, 107, 67, 0.2);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(217, 107, 67, 0.3);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-white);
    box-shadow: 0 4px 10px rgba(106, 158, 134, 0.2);
}

.btn-secondary:hover {
    background-color: var(--color-secondary-hover);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(106, 158, 134, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-light-gray);
}

.btn-outline:hover {
    background-color: var(--color-light-gray);
    color: var(--color-dark);
    transform: translateY(-2px);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline-primary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-full {
    display: flex;
    width: 100%;
}

.btn-large {
    padding: 1.1rem 2.2rem;
    font-size: 1.1rem;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: var(--color-secondary-light);
    color: var(--color-secondary);
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--border-radius-full);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

/* --------------------------------------------------
   PÄIS JA NAVIGATSIOON (Header & Nav)
-------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all var(--transition-normal);
}

.site-header.scrolled {
    background-color: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-subtle);
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--color-dark);
    font-weight: 700;
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--color-primary);
    background-color: var(--color-primary-light);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
}

.logo-text .sub-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-secondary);
    letter-spacing: 0.05em;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-dark);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
}

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

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-dark);
    position: relative;
    transition: background-color var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: var(--color-dark);
    left: 0;
    transition: transform var(--transition-normal);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* Hamburger aktiivne stiil */
.nav-toggle.active .hamburger {
    background-color: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* --------------------------------------------------
   HERO SEKTSIOON
-------------------------------------------------- */
.hero-section {
    position: relative;
    padding: 10rem 0 7rem 0;
    background: radial-gradient(circle at 80% 20%, var(--color-secondary-light) 0%, var(--bg-primary) 50%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--color-text);
    margin-bottom: 2.2rem;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.hero-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    transition: transform var(--transition-slow);
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.03);
}

/* Laine kuju disain allosas */
.custom-shape-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.custom-shape-divider-bottom .shape-fill {
    fill: var(--bg-primary);
}

/* --------------------------------------------------
   SEKTSIOONIDE ÜLDISED STIILID
-------------------------------------------------- */
section {
    padding: 6rem 0;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-secondary);
    font-weight: 500;
}

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

/* --------------------------------------------------
   MIKS MÄNGUTERAAPIA? (Benefits)
-------------------------------------------------- */
.info-section {
    background-color: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-subtle);
    transition: all var(--transition-normal);
    border: 1px solid rgba(127, 140, 141, 0.05);
}

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

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 20% 50% 30% 70% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.icon-1 { background-color: var(--color-primary-light); color: var(--color-primary); }
.icon-2 { background-color: var(--color-secondary-light); color: var(--color-secondary); }
.icon-3 { background-color: #EBF3F5; color: var(--color-dark); }
.icon-4 { background-color: #F8F1EB; color: #B38B6D; }

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--color-text);
    margin-bottom: 0;
}

/* --------------------------------------------------
   PROTSESS & TEENUSED (Timeline)
-------------------------------------------------- */
.process-section {
    background-color: var(--bg-secondary);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

/* Vertikaalne joon */
.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 15px;
    bottom: 15px;
    width: 4px;
    background-color: var(--color-light-gray);
    border-radius: var(--border-radius-full);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3.5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    position: absolute;
    left: 10px;
    top: 0;
    width: 44px;
    height: 44px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(217, 107, 67, 0.25);
    z-index: 2;
}

.timeline-content {
    background-color: var(--color-white);
    padding: 2.2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(217, 107, 67, 0.05);
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.timeline-meta {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.timeline-meta i {
    font-size: 0.85rem;
}

.timeline-content p {
    font-size: 0.98rem;
    margin-bottom: 0;
}

/* --------------------------------------------------
   TERAPEUDI SEKTSIOON
-------------------------------------------------- */
.therapist-section {
    background-color: var(--bg-primary);
}

.therapist-container {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
    align-items: center;
}

.therapist-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
}

.therapist-image {
    transform: scaleX(-1);
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}

.therapist-content h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.therapist-title {
    font-size: 1.2rem;
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: 1.8rem;
}

.therapist-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.therapist-credo {
    background-color: var(--bg-secondary);
    padding: 1.8rem;
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--color-primary);
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.therapist-credo i {
    font-size: 1.8rem;
    color: var(--color-primary);
    opacity: 0.4;
    line-height: 1;
}

.therapist-credo p {
    font-family: var(--font-heading);
    font-weight: 500;
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 0;
    color: var(--color-dark);
}

/* --------------------------------------------------
   HINNAKIRI (Pricing)
-------------------------------------------------- */
.pricing-section {
    background-color: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.price-card {
    background-color: var(--color-white);
    padding: 3rem 2.2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--color-light-gray);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all var(--transition-normal);
}

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

.price-card.featured {
    border: 2px solid var(--color-primary);
    box-shadow: var(--shadow-medium);
    transform: scale(1.02);
}

.price-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.price-tag {
    position: absolute;
    top: 15px;
    right: 20px;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--border-radius-full);
    text-transform: uppercase;
}

.price-card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.price-card-header .subtitle {
    font-size: 0.95rem;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

.price-amount {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    color: var(--color-dark);
}

.price-amount .currency {
    font-size: 1.6rem;
    font-weight: 600;
    margin-right: 0.2rem;
}

.price-amount .amount {
    font-size: 3.2rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.price-amount .per {
    font-size: 0.95rem;
    color: var(--color-gray);
    margin-left: 0.3rem;
}

.price-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.price-features li {
    font-size: 0.98rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.price-features li i {
    color: var(--color-secondary);
    font-size: 0.9rem;
}

/* --------------------------------------------------
   KONTAKT JA BRONEERIMINE
-------------------------------------------------- */
.contact-section {
    background-color: var(--bg-primary);
}

.contact-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

.contact-desc {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-bottom: 2.5rem;
}

.contact-method-card {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.method-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-method-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-method-card p {
    margin-bottom: 0;
    font-size: 0.98rem;
}

.email-link {
    font-weight: 600;
    border-bottom: 2px solid rgba(217, 107, 67, 0.15);
}

.email-link:hover {
    border-bottom-color: var(--color-primary);
}

.booking-notice {
    background-color: var(--color-secondary-light);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.booking-notice i {
    color: var(--color-secondary);
    font-size: 1.3rem;
    margin-top: 0.2rem;
}

.booking-notice p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--color-dark);
}

.contact-box {
    background-color: var(--bg-secondary);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--color-light-gray);
    text-align: center;
}

.contact-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.contact-box p {
    font-size: 0.98rem;
    margin-bottom: 2rem;
}

.contact-box .helper-text {
    font-size: 0.85rem;
    color: var(--color-gray);
    margin-top: 1rem;
    margin-bottom: 0;
}

/* --------------------------------------------------
   JALUS (Footer)
-------------------------------------------------- */
.site-footer {
    background-color: var(--color-dark);
    color: #E4E9E6;
    padding: 2rem 0;
}
.footer-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.8rem 2rem;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    justify-self: start;
    color: var(--color-white);
}
.footer-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.2;
}
.footer-specialty { font-size: 0.9rem; color: #B9D2C4; }
.footer-email, .footer-phone {
    color: #E4E9E6;
    font-size: 0.95rem;
    text-decoration: underline;
    text-underline-offset: 5px;
    overflow-wrap: anywhere;
}
.footer-email:hover, .footer-phone:hover { color: #B9D2C4; }
.site-footer a:focus-visible { outline: 2px solid #B9D2C4; outline-offset: 6px; }
/* --------------------------------------------------
   RESPONSIIVNE DISAIN (Mobiili kohandused)
-------------------------------------------------- */

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }
    
    .hero-content h1 {
        font-size: 2.6rem;
    }
    
    .hero-description {
        margin: 0 auto 2.2rem auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-image {
        height: 350px;
    }
    
    .therapist-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .therapist-image-wrapper {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .therapist-image {
        height: 380px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4.5rem 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.1rem;
    }
    
    /* Mobiilne navigatsioon (Hamburger menüü) */
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-primary);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        padding: 1.5rem 0;
        display: none;
        border-top: 1px solid var(--color-light-gray);
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 1.2rem;
        padding: 0 1.5rem;
        align-items: stretch;
    }
    
    .nav-link {
        display: block;
        padding: 0.6rem 0;
        font-size: 1.05rem;
    }
    
    .nav-btn {
        width: 100%;
        margin-top: 0.5rem;
    }
    
    /* Timeline kohandus */
    .process-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 55px;
        margin-bottom: 2.5rem;
    }
    
    .timeline-number {
        left: 0;
        width: 38px;
        height: 38px;
        font-size: 1.15rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .pricing-grid {
        gap: 1.5rem;
    }
    
    .price-card.featured {
        transform: none;
    }
    
    .price-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .footer-container {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .contact-box {
        padding: 2.2rem 1.5rem;
    }
}

/* Broneeringuvorm */
.booking-form { display: grid; gap: 1.1rem; text-align: left; }
.contact-container > * { min-width: 0; }
.form-field { display: grid; gap: 0.4rem; min-width: 0; }
.form-field label { font-weight: 600; }
.form-field label span { font-size: 0.85rem; font-weight: 400; }
.form-field input, .form-field textarea {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    padding: 0.8rem 0.9rem;
    border: 1px solid var(--color-gray);
    border-radius: 10px;
    background: var(--color-white);
    color: var(--color-dark);
    font: inherit;
    font-size: 1rem;
    line-height: 1.5;
}
.form-field textarea { resize: vertical; min-height: 220px; }
.form-field input:focus-visible, .form-field textarea:focus-visible, .booking-form button:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
}
.booking-form button { font: inherit; cursor: pointer; }
.email-link { overflow-wrap: anywhere; }
/* Avalehe pealkirja autoriviide */
.hero-content #hero-title { margin-bottom: 0.65rem; }
.hero-attribution {
    margin: 0 0 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--color-text);
}
.hero-attribution a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.hero-attribution a:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
}
.footer-contacts { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem 1.5rem; }
