/* ============================================
   Sunrise Home Care Services
   styles.css
   ============================================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-orange: #f0a830;
    --color-orange-dark: #d99520;
    --color-orange-light: #fdf5e6;
    --color-navy: #2a6ba3;
    --color-navy-light: #357ab5;
    --color-text: #2d3748;
    --color-text-light: #5a6577;
    --color-bg: #fafaf9;
    --color-white: #ffffff;
    --color-border: #e5e5e0;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --container: 1140px;
    --radius: 8px;
    --radius-lg: 16px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

/* --- Skip Link --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--color-navy);
    color: #fff;
    padding: 8px 16px;
    border-radius: var(--radius);
    z-index: 1000;
    font-size: 14px;
}

.skip-link:focus {
    top: 16px;
}

/* --- Container --- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
    text-decoration: none;
    line-height: 1.2;
}

.btn:active {
    transform: translateY(1px);
}

.btn-primary {
    background: var(--color-orange);
    color: #fff;
}

.btn-primary:hover {
    background: var(--color-orange-dark);
    box-shadow: 0 4px 12px rgba(240, 168, 48, 0.3);
}

.btn-outline {
    background: var(--color-white);
    color: var(--color-text);
    border: 1.5px solid var(--color-border);
}

.btn-outline:hover {
    border-color: var(--color-orange);
    color: var(--color-orange);
}

.btn-white {
    background: #fff;
    color: var(--color-navy);
}

.btn-white:hover {
    background: #f5f5f5;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-border);
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

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

.logo-img {
    height: 48px;
    width: auto;
}

.logo-icon {
    font-size: 26px;
    color: var(--color-orange);
}

.logo-accent {
    font-weight: 500;
    color: var(--color-text-light);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 16px;
    font-weight: 500;
}

.nav-list a {
    color: var(--color-text-light);
    padding: 8px 4px;
    transition: color 0.2s;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--color-orange);
}

.nav-cta {
    background: var(--color-orange);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--color-orange-dark) !important;
}

/* Mobile toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-navy);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

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

.hamburger::after {
    top: 7px;
}

/* Open state */
.menu-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.menu-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    text-align: center;
}

.hero-centered {
    max-width: 720px;
    margin: 0 auto;
}

.hero-tag {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-orange);
    margin-bottom: 16px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 52px;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 20px;
}

.hero h1 em {
    font-style: italic;
    color: var(--color-orange);
}

.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
    justify-content: center;
}

.hero-note {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    background: var(--color-navy);
    padding: 24px 0;
}

.trust-bar-inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    flex: 1;
    min-width: 140px;
}

.trust-item strong {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.trust-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-top: 2px;
}

/* ============================================
   SECTION (shared)
   ============================================ */
.section {
    padding: 96px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    color: var(--color-navy);
    margin-bottom: 12px;
}

.section-header p {
    font-size: 17px;
    color: var(--color-text-light);
    max-width: 560px;
    margin: 0 auto;
}

/* ============================================
   SERVICES
   ============================================ */
.services-section {
    background: var(--color-white);
}

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

.service-card {
    padding: 36px 28px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    border-color: var(--color-orange);
    box-shadow: 0 4px 20px rgba(240, 168, 48, 0.12);
}

.service-card-img {
    padding: 0;
    overflow: hidden;
}

.service-card-photo {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.service-card-img:hover .service-card-photo img {
    transform: scale(1.04);
}

.service-card-img h3,
.service-card-img p {
    padding: 0 28px;
}

.service-card-img h3 {
    padding-top: 24px;
}

.service-card-img p {
    padding-bottom: 28px;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--color-orange-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--color-orange);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.65;
}

/* ============================================
   WHY US
   ============================================ */
.why-section {
    background: var(--color-bg);
}

.why-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: center;
}

.why-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--color-navy);
    margin-bottom: 16px;
}

.why-content > p {
    font-size: 17px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.mission-block {
    margin-bottom: 28px;
    padding: 24px;
    background: var(--color-white);
    border-radius: var(--radius);
    border-left: 4px solid var(--color-orange);
}

.mission-block h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.mission-block p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.65;
    margin: 0;
}

.why-content > h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 16px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-list li {
    padding-left: 20px;
    border-left: 3px solid var(--color-orange);
    font-size: 15px;
    line-height: 1.65;
    color: var(--color-text-light);
}

.why-list li strong {
    display: block;
    color: var(--color-navy);
    font-size: 16px;
    margin-bottom: 4px;
}

.why-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

/* ============================================
   ABOUT
   ============================================ */
.about-section {
    background: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    align-items: start;
}

.about-text p {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.stat {
    text-align: center;
    padding: 28px 16px;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 44px;
    color: var(--color-orange);
    display: inline;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--color-orange);
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--color-text-light);
    margin-top: 4px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    background: var(--color-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial {
    background: var(--color-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 20px;
}

.testimonial cite {
    font-style: normal;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-light);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: linear-gradient(rgba(26, 35, 50, 0.85), rgba(26, 35, 50, 0.85)), url('IMG/banner.jpg') center/cover no-repeat;
    padding: 72px 0;
}

.cta-inner {
    text-align: center;
    max-width: 640px;
}

.cta-inner h2 {
    font-family: var(--font-heading);
    font-size: 34px;
    color: #fff;
    margin-bottom: 12px;
}

.cta-inner p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
    margin-bottom: 28px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
    background: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--color-navy);
    margin-bottom: 12px;
}

.contact-info > p {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 32px;
    line-height: 1.65;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-detail strong {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-orange);
}

.contact-detail a {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
}

.contact-detail a:hover {
    color: var(--color-orange);
}

.contact-detail span {
    font-size: 16px;
    color: var(--color-text-light);
}

.contact-detail .subtext {
    font-size: 14px;
    color: var(--color-text-light);
}

/* Form */
.contact-form-wrap {
    background: var(--color-bg);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    font-family: var(--font-body);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-white);
    color: var(--color-text);
    transition: border-color 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-orange);
    outline: 3px solid rgba(240, 168, 48, 0.3);
    outline-offset: 1px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #7a7a72;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235a6577' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-note {
    font-size: 13px;
    color: var(--color-text-light);
    margin-top: 12px;
    text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-navy);
    padding: 56px 0 32px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 300px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 64px;
}

.footer-col h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col li,
.footer-col a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.footer-col a:hover {
    color: var(--color-orange);
}

.footer-bottom {
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
}

/* ============================================
   PAGE BANNER (inner pages)
   ============================================ */
.page-banner {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    padding: 64px 0;
    text-align: center;
}

.page-banner h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    color: #fff;
    margin-bottom: 12px;
}

.page-banner p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ============================================
   SERVICE DETAIL (services page)
   ============================================ */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: center;
}

.service-detail.reverse {
    grid-template-columns: 1.2fr 1fr;
}

.service-detail.reverse .service-detail-img {
    order: 2;
}

.service-detail.reverse .service-detail-text {
    order: 1;
}

.service-detail-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.service-detail-text h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--color-navy);
    margin-bottom: 16px;
}

.service-detail-text p {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-detail-text ul {
    list-style: none;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-detail-text ul li {
    font-size: 15px;
    color: var(--color-text-light);
    padding-left: 20px;
    position: relative;
}

.service-detail-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--color-orange);
    border-radius: 50%;
}

/* ============================================
   FEATURE CARDS (about page)
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--color-orange-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--color-orange);
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.65;
}

/* ============================================
   VALUE CARDS (about page)
   ============================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.value-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-orange);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ============================================
   MISSION VISION GRID (about page)
   ============================================ */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================
   WIDE STATS (about page)
   ============================================ */
.about-stats-wide {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* ============================================
   SECTION CTA (centered button below sections)
   ============================================ */
.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* ============================================
   CONTACT FORM HEADING
   ============================================ */
.contact-form-wrap h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-navy);
    margin-bottom: 24px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
    .hero {
        padding: 64px 0 56px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-image {
        max-width: 400px;
        order: -1;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-detail,
    .service-detail.reverse {
        grid-template-columns: 1fr;
    }

    .service-detail.reverse .service-detail-img {
        order: 0;
    }

    .service-detail.reverse .service-detail-text {
        order: 0;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-main {
        flex-direction: column;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--color-white);
        border-bottom: 1px solid var(--color-border);
        padding: 24px;
        transform: translateY(-120%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        z-index: 99;
    }

    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-list {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .nav-list a {
        font-size: 18px;
        padding: 8px 0;
        display: block;
    }

    .nav-cta {
        text-align: center;
        margin-top: 8px;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 64px 0;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .trust-bar-inner {
        gap: 16px;
    }

    .trust-item {
        min-width: 45%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 24px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 32px;
    }

    .page-banner {
        padding: 40px 0;
    }

    .page-banner h1 {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-stats-wide {
        grid-template-columns: 1fr 1fr;
    }
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h2 {
    color: var(--color-primary);
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--color-text);
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.legal-content a {
    color: var(--color-primary);
    text-decoration: underline;
}
