/* ================================================================
   TECGYM BRAND COLORS – unified
   ================================================================ */
:root {
    --brand-orange: #FF8400;
    --brand-orange-hover: #E87500;
    --brand-orange-active: #CC6A00;
    --brand-orange-light: #FFF3E6;
    --brand-orange-extra-light: #FFF8F2;
    --brand-gray: #807E7E;
    --brand-gray-dark: #666666;
    --brand-gray-medium: #A3A3A3;
    --brand-gray-light: #E5E5E5;
    --brand-gray-bg: #F8F8F8;
    --neutral-white: #FFFFFF;
    --neutral-heading: #1F2937;
    --neutral-paragraph: #4B5563;
    --neutral-muted: #6B7280;
    --neutral-border: #E5E7EB;
    --neutral-divider: #F2F2F2;
    --neutral-footer: #111827;
    --neutral-bg: #FAFAFA;
    --shadow-soft: 0 2px 12px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-orange: 0 8px 30px rgba(255, 132, 0, 0.20);
    --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.08);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-btn: 50px;
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --font-weight-heading: 700;
    --font-weight-body: 400;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background: var(--neutral-white);
    color: var(--neutral-paragraph);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--neutral-heading);
    font-weight: var(--font-weight-heading);
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* ================================================================
   BUTTONS – Unified
   ================================================================ */
.btn {
    padding: 12px 32px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
}

.btn-primary {
    background: var(--brand-orange);
    color: var(--neutral-white);
    box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
    background: var(--brand-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 132, 0, 0.35);
    color: var(--neutral-white);
}
.btn-primary:active {
    background: var(--brand-orange-active);
    transform: translateY(0);
}

.btn-outline-primary {
    background: transparent;
    color: var(--brand-orange);
    border: 2px solid var(--brand-orange);
}
.btn-outline-primary:hover {
    background: var(--brand-orange);
    color: var(--neutral-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

.btn-cta {
    background: var(--brand-orange);
    color: var(--neutral-white);
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-cta:hover {
    background: var(--brand-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 132, 0, 0.25);
    color: var(--neutral-white);
}

.btn-light {
    background: var(--neutral-white);
    color: var(--brand-orange);
}
.btn-light:hover {
    background: #f0f0f0;
    color: var(--brand-orange-hover);
}

button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--brand-orange);
    outline-offset: 2px;
}

/* ================================================================
   HEADER – Same as homepage
   ================================================================ */
.hdr-6 {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: #141e2b;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hdr-6 .top-bar {
    background: rgba(14, 23, 34, 0.92);
    padding: 0.4rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: relative;
    transition: transform 0.4s ease, opacity 0.4s ease, max-height 0.4s ease, padding 0.4s ease;
    min-height: 40px;
    text-align: center;
    overflow: hidden;
}
.hdr-6 .top-bar-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}
.hdr-6 .top-bar-closed {
    display: none;
}
.hdr-6 .top-bar p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    font-weight: 400;
    margin: 0;
    flex: 1;
}
.hdr-6 .top-bar p strong {
    color: var(--brand-orange);
    font-weight: 600;
}
.hdr-6 .top-bar-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    cursor: pointer;
    padding: 0 0.5rem;
    transition: color 0.2s;
    flex-shrink: 0;
}
.hdr-6 .top-bar-close:hover {
    color: var(--brand-orange);
}

.hdr-6 .main {
    padding: 0 2rem;
    background: #141e2b;
    position: relative;
    z-index: 2;
}
.hdr-6 .inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    position: relative;
}
.hdr-6 .logo-img {
    height: 44px;
    width: auto;
    display: block;
    flex-shrink: 0;
}

.hdr-6 .nav {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}
.hdr-6 .nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    transition: all 0.25s;
}
.hdr-6 .nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}
.hdr-6 .nav a.active {
    color: var(--brand-orange);
    font-weight: 600;
    background: rgba(255, 132, 0, 0.06);
}

.hdr-6 .btn-cta {
    background: var(--brand-orange);
    color: #fff !important;
    padding: 0.4rem 1.6rem !important;
    border-radius: 40px !important;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}
.hdr-6 .btn-cta:hover {
    background: var(--brand-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 132, 0, 0.25);
}

.hdr-6 .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}
.hdr-6 .hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: #fff;
    border-radius: 4px;
    transition: 0.3s ease;
    transform-origin: center;
}

@media (max-width: 768px) {
    .hdr-6 .inner {
        flex-wrap: wrap;
        height: auto;
        padding: 10px 0;
        gap: 10px;
    }
    .hdr-6 .hamburger {
        display: flex;
        order: 2;
        margin-left: auto;
    }
    .hdr-6 .btn-cta {
        order: 1;
        padding: 0.3rem 1rem !important;
        font-size: 0.8rem;
        margin-left: auto;
    }
    .hdr-6 .logo-img {
        height: 38px;
        order: 0;
        margin-right: auto;
    }
    .hdr-6 .nav {
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        order: 3;
        padding: 0.8rem 0 0.3rem 0;
        gap: 0.2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.04);
        margin-top: 8px;
    }
    .hdr-6 .nav.open {
        display: flex;
    }
    .hdr-6 .nav a {
        font-size: 1rem;
        padding: 0.7rem 1rem;
        text-align: center;
        border-radius: 8px;
        color: rgba(255, 255, 255, 0.8);
    }
    .hdr-6 .nav a:hover {
        background: rgba(255, 255, 255, 0.04);
    }
    .hdr-6 .nav a.active {
        color: var(--brand-orange);
        background: rgba(255, 132, 0, 0.08);
    }
    .hdr-6 .top-bar {
        padding: 0.3rem 0.8rem;
        min-height: 34px;
        gap: 0.5rem;
    }
    .hdr-6 .top-bar p {
        font-size: 0.6rem;
        letter-spacing: 0.3px;
    }
    .hdr-6 .top-bar-close {
        font-size: 0.9rem;
        padding: 0 0.3rem;
    }
    .hdr-6 .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .hdr-6 .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    .hdr-6 .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}

@media (max-width: 480px) {
    .hdr-6 .btn-cta {
        font-size: 0.7rem;
        padding: 0.2rem 0.7rem !important;
    }
    .hdr-6 .logo-img {
        height: 32px;
    }
    .hdr-6 .hamburger span {
        width: 22px;
        height: 2px;
    }
    .hdr-6 .top-bar p {
        font-size: 0.5rem;
    }
}

/* ================================================================
   PAGE HEADER
   ================================================================ */
.page-header {
    background: var(--brand-orange-extra-light);
    padding: 60px 0 50px;
    border-bottom: 1px solid var(--neutral-border);
}
.page-header h1 {
    color: var(--neutral-heading);
}
.page-header p {
    color: var(--neutral-paragraph);
}

/* ================================================================
   OUR STORY
   ================================================================ */
.our-story-section {
    background: var(--neutral-white) !important;
    padding: 70px 0;
}
.our-story-section .story-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--brand-orange-extra-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}
.our-story-section .story-icon-wrapper i {
    font-size: 2.2rem;
    color: var(--brand-orange);
}

/* ================================================================
   MISSION & VALUES
   ================================================================ */
.mission-values-section {
    background: var(--brand-orange-extra-light);
    padding: 70px 0;
}
.mission-values-section .section-title {
    color: var(--neutral-heading);
}
.mission-values-section .section-subtitle {
    color: var(--neutral-paragraph);
    max-width: 600px;
    margin: 0 auto;
}

.value-card {
    background: var(--neutral-white);
    border-radius: var(--radius);
    padding: 32px 24px 28px;
    text-align: center;
    border: 1px solid var(--neutral-border);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    height: 100%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}
.value-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(255, 132, 0, 0.12);
    border-color: var(--brand-orange);
}
.value-card:hover::after {
    transform: scaleX(1);
}

.value-card .icon-circle {
    width: 72px;
    height: 72px;
    background: var(--brand-orange-extra-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}
.value-card:hover .icon-circle {
    background: var(--brand-orange);
    transform: scale(1.06);
}
.value-card:hover .icon-circle i {
    color: #fff !important;
}
.value-card .icon-circle i {
    font-size: 2rem;
    color: var(--brand-orange);
    transition: all 0.3s ease;
}
.value-card h5 {
    color: var(--neutral-heading);
    font-weight: 700;
    font-size: 1.1rem;
}
.value-card h5 i {
    color: var(--brand-orange);
    margin-right: 6px;
}
.value-card p {
    color: var(--neutral-paragraph);
    font-size: 0.92rem;
    margin-bottom: 0;
}

/* ================================================================
   TEAM SECTION
   ================================================================ */
.team-section {
    background: var(--neutral-white);
    padding: 70px 0;
}
.team-section .section-title {
    color: var(--neutral-heading);
}

.team-card {
    background: var(--neutral-white);
    border-radius: var(--radius);
    padding: 24px 16px 20px;
    text-align: center;
    border: 1px solid var(--neutral-border);
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(255, 132, 0, 0.08);
    border-color: var(--brand-orange);
}
.team-card .profile-circle {
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 50%;
    border: 4px solid var(--brand-orange-extra-light);
    transition: border-color 0.3s ease;
    margin: 0 auto 12px;
}
.team-card:hover .profile-circle {
    border-color: var(--brand-orange);
}
.team-card .profile-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-card h5 {
    color: var(--neutral-heading);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2px;
}
.team-card .role {
    color: var(--brand-orange);
    font-weight: 600;
    font-size: 0.8rem;
}
.team-card .bio {
    color: var(--neutral-paragraph);
    font-size: 0.75rem;
    margin-top: 4px;
}

.team-card-featured .profile-circle {
    width: 160px;
    height: 160px;
    border-width: 5px;
}
.team-card-featured h5 {
    font-size: 1.3rem;
}
.team-card-featured .role {
    font-size: 0.95rem;
}

/* ================================================================
   WHY TECGYM
   ================================================================ */
.why-section {
    background: var(--brand-orange-extra-light);
    padding: 70px 0;
}
.why-section .section-title {
    color: var(--neutral-heading);
}
.why-item {
    background: var(--neutral-white);
    border-radius: var(--radius);
    padding: 24px 28px;
    border: 1px solid var(--neutral-border);
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.why-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 132, 0, 0.08);
    border-color: var(--brand-orange);
}
.why-item .icon-wrapper {
    width: 52px;
    height: 52px;
    background: var(--brand-orange-extra-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.why-item .icon-wrapper i {
    font-size: 1.4rem;
    color: var(--brand-orange);
}
.why-item h6 {
    color: var(--neutral-heading);
    font-weight: 700;
    margin-bottom: 2px;
}
.why-item p {
    color: var(--neutral-paragraph);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-section {
    background: var(--neutral-white);
    padding: 60px 0 70px;
}
.cta-section .cta-box {
    background: linear-gradient(135deg, var(--brand-orange) 0%, #FFA940 100%);
    border-radius: var(--radius);
    padding: 50px 40px;
    color: #fff;
    box-shadow: var(--shadow-orange);
    text-align: center;
}
.cta-section .cta-box h2 {
    color: #fff;
}
.cta-section .cta-box p {
    color: rgba(255, 255, 255, 0.9);
}
.cta-section .cta-box .btn-light {
    background: #fff;
    color: var(--brand-orange);
    border: none;
}
.cta-section .cta-box .btn-light:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    color: var(--brand-orange-hover);
}

/* ================================================================
   FOOTER – No dots, orange social icons
   ================================================================ */
.site-footer .footer-main {
    background: var(--neutral-footer) !important;
}
.site-footer .footer__heading {
    color: var(--neutral-white) !important;
}
.site-footer .footer__link {
    color: #D1D5DB !important;
    text-decoration: none;
    transition: color 0.3s ease;
}
.site-footer .footer__link:hover {
    color: var(--brand-orange) !important;
}
.site-footer .footer-bottom {
    background: var(--neutral-footer) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
}
.site-footer .footer-bottom p {
    color: #9CA3AF !important;
}
.site-footer .footer__list {
    list-style: none;
    padding: 0;
}
.site-footer .footer__social-link {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--brand-orange) !important;
}
.site-footer .footer__social-link:hover {
    border-color: var(--brand-orange-hover) !important;
    color: var(--brand-orange) !important;
    transform: translateY(-2px);
}

.btn-quote-modal {
    background: var(--brand-orange);
    color: #FFFFFF;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-orange);
    width: 100%;
    max-width: 320px;
}
.btn-quote-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 132, 0, 0.35);
    color: #FFFFFF;
}

/* ================================================================
   QUOTE & SUCCESS MODALS
   ================================================================ */
.quote-modal .modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    background: #1a1a2e;
}
.quote-modal .modal-header {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 20px 25px 10px 25px;
    background: #1a1a2e;
    border-radius: 20px 20px 0 0;
}
.quote-modal .modal-header .modal-title {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.4rem;
}
.quote-modal .modal-header .btn-close {
    filter: invert(1) brightness(2);
    opacity: 0.7;
}
.quote-modal .modal-header .btn-close:hover {
    opacity: 1;
}
.quote-modal .modal-body {
    padding: 20px 25px 30px 25px;
    background: #1a1a2e;
    border-radius: 0 0 20px 20px;
}
.quote-modal .form-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 3px;
    letter-spacing: 0.3px;
}
.quote-modal .form-control {
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    color: #FFFFFF !important;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    width: 100%;
    transition: border-color 0.3s ease;
}
.quote-modal .form-control:focus {
    border-color: var(--brand-orange) !important;
    box-shadow: 0 0 0 2px rgba(255,132,0,0.15);
    background: rgba(255,255,255,0.08) !important;
}
.quote-modal .form-control::placeholder {
    color: #9CA3AF !important;
}
.quote-modal .form-control.is-invalid {
    border-color: #dc3545 !important;
}
.quote-modal .field-error {
    color: #ff6b6b;
    font-size: 0.7rem;
    display: none;
    margin-top: 2px;
}

.quote-success-modal .modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.quote-success-modal .modal-header {
    border-bottom: none;
    padding: 25px 30px 0 30px;
}
.quote-success-modal .modal-header .btn-close {
    font-size: 1.5rem;
    opacity: 0.7;
}
.quote-success-modal .modal-header .btn-close:hover {
    opacity: 1;
}
.quote-success-modal .modal-body {
    padding: 10px 30px 30px 30px;
    text-align: center;
}
.quote-success-modal .modal-body .success-icon {
    font-size: 4rem;
    color: var(--brand-orange);
    display: block;
    margin-bottom: 15px;
}
.quote-success-modal .modal-body h4 {
    font-weight: 700;
    color: var(--neutral-heading);
    margin-bottom: 10px;
}
.quote-success-modal .modal-body p {
    color: var(--neutral-paragraph);
    font-size: 1rem;
    margin-bottom: 0;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 768px) {
    .page-header {
        padding: 40px 0 30px;
    }
    .page-header h1 {
        font-size: 2rem;
    }
    .our-story-section {
        padding: 40px 0;
    }
    .mission-values-section {
        padding: 40px 0;
    }
    .team-section {
        padding: 40px 0;
    }
    .why-section {
        padding: 40px 0;
    }
    .cta-section {
        padding: 40px 0 50px;
    }
    .cta-section .cta-box {
        padding: 30px 20px;
    }
    .cta-section .cta-box h2 {
        font-size: 1.5rem;
    }
    .value-card {
        padding: 24px 18px 20px;
    }
    .why-item {
        padding: 18px 20px;
    }
    .team-card .profile-circle {
        width: 100px;
        height: 100px;
    }
    .team-card-featured .profile-circle {
        width: 130px;
        height: 130px;
    }
    .site-footer .footer__heading { font-size: 1rem !important; }
    .site-footer .footer__link { font-size: 0.85rem !important; }
    .site-footer h2 { font-size: 1.5rem !important; }
    .site-footer .footer__social-link { width: 34px !important; height: 34px !important; font-size: 0.9rem !important; }
    .btn-quote-modal { font-size: 0.9rem; padding: 10px 24px; max-width: 100%; }
    .quote-modal .modal-body { padding: 15px 18px 20px 18px; }
    .quote-modal .modal-header { padding: 15px 18px 5px 18px; }
    .quote-modal .modal-header .modal-title { font-size: 1.2rem; }
    .quote-modal .form-control { font-size: 0.8rem; padding: 8px 12px; }
    .quote-modal .btn-quote-submit { font-size: 0.85rem; padding: 10px 20px; }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 1.7rem;
    }
    .our-story-section .story-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    .our-story-section .story-icon-wrapper i {
        font-size: 1.6rem;
    }
    .value-card .icon-circle {
        width: 60px;
        height: 60px;
    }
    .value-card .icon-circle i {
        font-size: 1.5rem;
    }
    .team-card .profile-circle {
        width: 80px;
        height: 80px;
    }
    .team-card-featured .profile-circle {
        width: 110px;
        height: 110px;
    }
    .cta-section .cta-box .btn-light {
        padding: 12px 28px;
        font-size: 0.9rem;
        width: 100%;
    }
    .site-footer .footer__heading { font-size: 0.9rem !important; }
    .site-footer .footer__link { font-size: 0.8rem !important; }
    .site-footer h2 { font-size: 1.2rem !important; }
    .site-footer .footer__social-link { width: 32px !important; height: 32px !important; font-size: 0.8rem !important; }
    .btn-quote-modal { font-size: 0.8rem; padding: 8px 18px; }
    .quote-modal .modal-body { padding: 12px 14px 16px 14px; }
    .quote-modal .modal-header { padding: 12px 14px 5px 14px; }
    .quote-modal .modal-header .modal-title { font-size: 1rem; }
    .quote-modal .form-control { font-size: 0.75rem; padding: 6px 10px; }
    .quote-modal .btn-quote-submit { font-size: 0.8rem; padding: 8px 16px; }
    .quote-modal .form-label { font-size: 0.65rem; }
}