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

/* body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    background-image: url('pic2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
} */

#medical-staff-body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    background-image: url('pic7.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: black;
}

#community-members-body, #common-questions-body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    background-image: url('pic3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: black;
}

#about-body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    background-image: url('pic3_dark.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: black;
}

/* Header styles */
header {
    background-color: #1a1a1a;
    padding: 0 40px;
    height: 80px;
    position: sticky;
    top: 0;
    z-index: 100;
    color-scheme: light;
    filter: none !important;
}

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

.logo {
    color: white;
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: -0.5px;
}

nav {
    display: flex;
    gap: 60px;
    color-scheme: light;
}

nav a {
    color: #888888;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #5AA9FF;
}

nav a.active {
    color: #5AA9FF;
}

/* Main content styles */
main {
    padding: 20px 40px;
}

/* ========================================
   HERO SECTION STYLES
   ======================================== */

.hero-section {
    min-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 25px;
    position: relative;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    color: white;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 40px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.hero-button {
    background-color: rgba(90, 169, 255, 0.85);
    color: white;
    border: none;
    padding: 18px 42px;
    font-size: 1.3rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(90, 169, 255, 0.3);
}

.hero-button:hover {
    background-color: rgba(90, 169, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(90, 169, 255, 0.4);
}

.hero-button:active {
    transform: translateY(0);
}

/* Hero Info Card (Expandable) */
.hero-info-card {
    background: linear-gradient(135deg, rgba(100, 170, 230, 0.88) 0%, rgba(70, 140, 200, 0.88) 100%);
    border-radius: 24px;
    padding: 0;
    margin-top: 40px;
    max-width: 700px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.4s ease, padding 0.4s ease;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
}

.hero-info-card.show {
    max-height: 1000px;
    opacity: 1;
    padding: 35px 40px;
}

.hero-info-card .info-intro {
    color: white;
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.hero-info-card .info-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    margin: 20px 0 24px 0;
}

.hero-info-card h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 28px;
}

.hero-info-card .info-section {
    margin-bottom: 22px;
}

.hero-info-card .info-section:last-of-type {
    margin-bottom: 28px;
}

.hero-info-card h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-info-card ul {
    list-style: disc;
    margin: 0;
    padding-left: 28px;
}

.hero-info-card li {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 6px;
    padding-left: 8px;
}

.hero-info-card .info-cta {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    margin-top: 8px;
}

.hero-info-card .info-cta a {
    color: #abd4ff;
    text-decoration: underline;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.hero-info-card .info-cta a:hover {
    opacity: 0.75;
    color: #abd4ff;
}

.hero-info-card .info-intro a {
    color: #abd4ff;
    text-decoration: underline;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

/* .content a,
.content-static a {
    color: #83befd; #9fcaf8;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.content a:hover,
.content-static a:hover {
    color: #8ec5ff;
} */

.hero-info-card .info-intro a:hover {
    opacity: 0.85;
}

/* Desktop: Side-by-side layout when info card is shown */
@media (min-width: 1025px) {
    .hero-section {
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 60px;
    }

    .hero-content {
        flex: 0 0 auto;
        max-width: 45%;
    }

    .hero-info-card {
        flex: 1 1 650px;
        max-width: none;
        margin-top: 0;
        position: relative;
        top: 20px;
    }

    .hero-info-card.show {
        max-height: none;
    }
}

/* ========================================
   END HERO SECTION STYLES
   ======================================== */

/* ========================================
   PDF EMBED STYLES
   ======================================== */

main.pdf-page {
    padding: 20px 40px 40px;
    height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
}

.pdf-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.pdf-header {
    background-color: rgba(50, 80, 110, 0.90);
    padding: 24px 30px;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pdf-header h2 {
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
}

.pdf-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
    flex: 1;
}

.pdf-download-btn {
    background-color: rgba(90, 169, 255, 0.85);
    color: white;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.pdf-download-btn:hover {
    background-color: rgba(90, 169, 255, 1);
    transform: translateY(-1px);
}

.pdf-embed-wrapper {
    flex: 1;
    min-height: 0;
    background-color: rgba(30, 50, 70, 0.95);
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.pdf-embed {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Fallback message styling */
.pdf-embed p {
    color: white;
    padding: 40px;
    text-align: center;
    font-size: 1.1rem;
}

.pdf-embed a {
    color: #83befd;
    text-decoration: underline;
}

/* Mobile fallback - hidden on desktop */
.pdf-mobile-fallback {
    display: none;
}

/* ========================================
   END PDF EMBED STYLES
   ======================================== */

/* Collapsible section styles */
.collapsible-section {
    margin-bottom: 15px;
}

.collapsible {
    width: 100%;
    background-color: rgba(72, 144, 216, 0.88);
    color: white;
    cursor: pointer;
    padding: 20px 30px;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: background-color 0.3s ease;
}

.collapsible:hover {
    background-color: rgba(70, 110, 150, 0.90);
}

.collapsible .icon {
    font-size: 1.6rem;
    font-weight: 300;
    min-width: 20px;
}

.collapsible .title {
    font-weight: 400;
}

/* Content area (hidden by default) */
.content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: rgba(50, 80, 110, 0.90);
}

.content.show {
    max-height: 3000px;
    transition: max-height 0.5s ease-in;
}

/* Static content area (always visible, for About page) */
.content-static {
    background-color: rgba(50, 80, 110, 0.90);
    padding: 30px 0 40px 0;
}

/* Content paragraph styles */
.content p,
.content-static p {
    color: white;
    padding: 10px 65px;
    line-height: 1.7;
    font-size: 1.2rem;
    margin: 0;
}

.content h2,
.content-static h2 {
    color: white;
    padding: 10px 65px;
    line-height: 1.7;
    font-size: 1.5rem;
    margin: 0;
}

.content p:first-child,
.content-static p:first-child {
    padding-top: 30px;
}

.content > p:last-child,
.content-static > p:last-child {
    padding-bottom: 40px;
}

/* Blockquote styles */
.content blockquote,
.content-static blockquote {
    margin: 20px 65px;
    padding: 15px 25px;
    background-color: rgba(30, 60, 90, 0.6);
    border-left: 4px solid rgba(90, 169, 255, 0.8);
    border-radius: 0 8px 8px 0;
}

.content blockquote p,
.content-static blockquote p {
    padding: 8px 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.content blockquote p:first-child,
.content-static blockquote p:first-child {
    padding-top: 8px;
}

.content blockquote p:last-child,
.content-static blockquote p:last-child {
    padding-bottom: 8px;
}

/* Link styles */
.content a,
.content-static a {
    color: #83befd;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.content a:hover,
.content-static a:hover {
    color: #8ec5ff;
}

/* Horizontal rule styles */
.content-static hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 20px 65px;
}

/* List styles */
.content ul,
.content-static ul {
    margin: 20px 65px;
    padding-left: 0;
    list-style-position: outside;
}

.content li,
.content-static li {
    color: white;
    line-height: 1.7;
    font-size: 1.2rem;
    margin: 12px 0;
    margin-left: 25px;
    padding-left: 10px;
}

.content ol,
.content-static ol {
    margin: 20px 65px;
    padding-left: 0;
    list-style-position: outside;
}

.content ol li,
.content-static ol li {
    margin-left: 30px;
}

.content img,
.content-static img {
    display: block;
    /* max-width: calc(100% - 130px);  Accounts for 65px margin on each side */
    max-width: calc((100% - 130px) / 2);
    height: auto;
    margin: 25px 65px;  /* Matches your text padding */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);  /* Subtle shadow for depth */
}

/* Hamburger menu button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 200;
    color-scheme: light;
    filter: none !important;
    isolation: isolate;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background-color: #ffffff !important;
    background-image: none !important;
    margin: 3px 0;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    filter: none !important;
    box-shadow: none !important;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile navigation overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.show {
    opacity: 1;
}

/* Responsive adjustments - Tablet and Mobile (1280px and below) */
@media (max-width: 1280px) {
    /* Hamburger menu */
    .hamburger {
        display: flex;
    }

    /* Header adjustments */
    header {
        padding: 0 20px;
    }

    .header-content {
        flex-direction: row;
        height: 100%;
    }

    /* Navigation menu */
    nav {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background-color: #1a1a1a;
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 40px 40px;
        gap: 0;
        z-index: 150;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }

    nav.show {
        right: 0;
    }

    nav a {
        font-size: 1.2rem;
        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }

    nav a:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Navigation overlay */
    .nav-overlay {
        display: block;
        pointer-events: none;
    }

    .nav-overlay.show {
        pointer-events: auto;
    }

    /* Main content */
    main {
        padding: 20px 20px;
    }

    /* PDF page responsive */
    main.pdf-page {
        padding: 15px 15px 20px;
        height: calc(100vh - 80px);
    }

    .pdf-header {
        padding: 20px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .pdf-header p {
        font-size: 0.95rem;
    }

    /* Hero section responsive */
    .hero-section {
        padding: 40px 15px;
        min-height: calc(100vh - 100px);
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-info-card {
        max-width: 100%;
    }

    .hero-info-card.show {
        padding: 28px 30px;
    }

    /* Content text and headings */
    .content p,
    .content-static p {
        padding: 15px 35px;
    }

    .content h2,
    .content-static h2 {
        padding: 15px 35px;
    }

    /* Blockquotes */
    .content blockquote,
    .content-static blockquote {
        margin: 20px 35px;
    }

    /* Horizontal rule */
    .content-static hr {
        margin: 20px 35px;
    }

    /* Lists */
    .content ul,
    .content-static ul,
    .content ol,
    .content-static ol {
        margin: 15px 35px;
    }

    .content li,
    .content-static li {
        padding: 10px 20px;
    }



    /* Background fix for mobile scrolling */
    #medical-staff-body,
    #community-members-body,
    #common-questions-body,
    #about-body {
        background: none;
    }

    #medical-staff-body::before,
    #community-members-body::before,
    #common-questions-body::before,
    #about-body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    #medical-staff-body::before {
        background-image: url('pic7.jpg');
    }

    #community-members-body::before,
    #common-questions-body::before {
        background-image: url('pic3.jpg');
    }

    #about-body::before {
        background-image: url('pic3_dark.jpg');
    }
}

/* Tablet-specific adjustments (769px to 1280px) - Larger text sizes */
@media (min-width: 769px) and (max-width: 1280px) {
    .logo {
        font-size: 1.8rem;
    }

    .collapsible {
        padding: 18px 25px;
        font-size: 1.35rem;
    }

    .content p,
    .content-static p,
    .content li,
    .content-static li {
        font-size: 1.25rem;
    }

    .content h2,
    .content-static h2 {
        font-size: 1.6rem;
    }

    /* Hero section tablet */
    .hero-title {
        font-size: 3.2rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-button {
        padding: 16px 36px;
        font-size: 1.2rem;
    }

    .hero-info-card h2 {
        font-size: 1.65rem;
    }

    .hero-info-card .info-intro {
        font-size: 1.25rem;
    }

    .hero-info-card h3 {
        font-size: 1.2rem;
    }

    .hero-info-card li,
    .hero-info-card .info-cta {
        font-size: 1.1rem;
    }

    /* Images - make them about 2/3 width on tablet */
    .content img,
    .content-static img {
        max-width: calc((100% - 70px) * 0.67);
        margin: 20px 35px;
    }

    /* PDF page mobile */
    main.pdf-page {
        padding: 10px 10px 15px;
        height: auto;
        min-height: calc(100vh - 80px);
    }

    .pdf-header {
        padding: 16px 18px;
        border-radius: 8px;
    }

    .pdf-header h2 {
        font-size: 1.25rem;
    }

    .pdf-header-desc,
    .pdf-download-btn {
        display: none;
    }

    .pdf-embed-wrapper {
        display: none;
    }

    /* Mobile fallback - show on mobile */
    .pdf-mobile-fallback {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding: 20px 0;
    }

    .pdf-mobile-card {
        background-color: rgba(50, 80, 110, 0.90);
        border-radius: 16px;
        padding: 32px 24px;
        text-align: center;
        max-width: 340px;
        width: 100%;
    }

    .pdf-mobile-icon {
        color: rgba(90, 169, 255, 0.9);
        margin-bottom: 16px;
    }

    .pdf-mobile-card h3 {
        color: white;
        font-size: 1.15rem;
        font-weight: 500;
        margin: 0 0 12px 0;
    }

    .pdf-mobile-card p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0 0 24px 0;
    }

    .pdf-mobile-btn {
        display: block;
        background-color: rgba(90, 169, 255, 0.9);
        color: white;
        text-decoration: none;
        padding: 14px 28px;
        border-radius: 30px;
        font-size: 1.05rem;
        font-weight: 500;
        transition: all 0.3s ease;
        margin-bottom: 12px;
    }

    .pdf-mobile-btn:hover {
        background-color: rgba(90, 169, 255, 1);
    }

    .pdf-mobile-btn-secondary {
        display: block;
        background-color: transparent;
        color: rgba(255, 255, 255, 0.85);
        text-decoration: none;
        padding: 12px 28px;
        border-radius: 30px;
        font-size: 0.95rem;
        font-weight: 400;
        border: 1px solid rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
    }

    .pdf-mobile-btn-secondary:hover {
        border-color: rgba(255, 255, 255, 0.5);
        color: white;
    }

}

/* Mobile-specific adjustments (768px and below) - Smaller text sizes */
@media (max-width: 768px) {
    .logo {
        font-size: 1.4rem;
    }

    .collapsible {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .content p,
    .content-static p,
    .content li,
    .content-static li {
        font-size: 1rem;
    }

    .content h2,
    .content-static h2 {
        font-size: 1.3rem;
    }

    /* PDF page mobile */
    main.pdf-page {
        padding: 10px 10px 15px;
        height: auto;
        min-height: calc(100vh - 80px);
    }

    .pdf-header {
        padding: 16px 18px;
        border-radius: 8px;
    }

    .pdf-header h2 {
        font-size: 1.25rem;
    }

    .pdf-header-desc,
    .pdf-download-btn {
        display: none;
    }

    .pdf-embed-wrapper {
        display: none;
    }

    /* Mobile fallback - show on mobile */
    .pdf-mobile-fallback {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding: 20px 0;
    }

    .pdf-mobile-card {
        background-color: rgba(50, 80, 110, 0.90);
        border-radius: 16px;
        padding: 32px 24px;
        text-align: center;
        max-width: 340px;
        width: 100%;
    }

    .pdf-mobile-icon {
        color: rgba(90, 169, 255, 0.9);
        margin-bottom: 16px;
    }

    .pdf-mobile-card h3 {
        color: white;
        font-size: 1.15rem;
        font-weight: 500;
        margin: 0 0 12px 0;
    }

    .pdf-mobile-card p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0 0 24px 0;
    }

    .pdf-mobile-btn {
        display: block;
        background-color: rgba(90, 169, 255, 0.9);
        color: white;
        text-decoration: none;
        padding: 14px 28px;
        border-radius: 30px;
        font-size: 1.05rem;
        font-weight: 500;
        transition: all 0.3s ease;
        margin-bottom: 12px;
    }

    .pdf-mobile-btn:hover {
        background-color: rgba(90, 169, 255, 1);
    }

    .pdf-mobile-btn-secondary {
        display: block;
        background-color: transparent;
        color: rgba(255, 255, 255, 0.85);
        text-decoration: none;
        padding: 12px 28px;
        border-radius: 30px;
        font-size: 0.95rem;
        font-weight: 400;
        border: 1px solid rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
    }

    .pdf-mobile-btn-secondary:hover {
        border-color: rgba(255, 255, 255, 0.5);
        color: white;
    }

    /* Hero section mobile */
    .hero-section {
        padding: 30px 10px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 28px;
    }

    .hero-button {
        padding: 14px 32px;
        font-size: 1.1rem;
    }

    .hero-info-card.show {
        padding: 24px 22px;
        max-height: none;
    }

    .hero-info-card h2 {
        font-size: 1.45rem;
        margin-bottom: 20px;
    }

    .hero-info-card .info-intro {
        font-size: 1.15rem;
    }

    .hero-info-card .info-divider {
        margin: 16px 0 20px 0;
    }

    .hero-info-card h3 {
        font-size: 1.15rem;
    }

    .hero-info-card li {
        font-size: 1.05rem;
    }

    .hero-info-card .info-cta {
        font-size: 1.05rem;
    }

    /* Images - make them as wide as text content on mobile */
    .content img,
    .content-static img {
        max-width: calc(100% - 70px);
        margin: 20px 35px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.1rem;
    }

    nav {
        width: 100%;
        right: -100%;
    }

    nav.show {
        right: 0;
    }

    /* Hero section small mobile */
    .hero-title {
        font-size: 1.9rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-button {
        padding: 12px 28px;
        font-size: 1rem;
    }

    .hero-info-card.show {
        padding: 20px 18px;
    }

    .hero-info-card h2 {
        font-size: 1.3rem;
    }

    .hero-info-card .info-intro {
        font-size: 1.05rem;
    }

    .hero-info-card .info-divider {
        margin: 14px 0 18px 0;
    }

    .hero-info-card h3 {
        font-size: 1.1rem;
    }

    .hero-info-card ul {
        padding-left: 20px;
    }

    .hero-info-card li {
        font-size: 1rem;
    }
}
