/*------------------------------------*\
    #BASE STYLES & VARIABLES
\*------------------------------------*/

/* Google Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&display=swap');

/* CSS Variables for Design Tokens (Default: Light Theme) */
:root {
    /* Primary Colors */
    --bs-primary: #020402; /* Main dark color (almost black) */
    --primary-dark: #020402; /* Main dark color (almost black) */
    --primary-white: #FFFFFF; /* Main white color */

    /* Accent Color (Subtle Green-Gray) */
    --accent-color: #758173; /* The specified accent color */
    --accent-dark-color: #5C665A; /* Darker shade for hover/active */
    --accent-light-color: #A0A89F; /* Lighter shade for subtle accents */

    /* Neutral Backgrounds (derived from primary colors) */
    --background-light: var(--primary-white); /* Main content background */
    --background-medium: #F8F8F8; /* Slightly off-white for subtle contrast */
    --background-card: var(--primary-white); /* Cards are pure white */
    --background-dark: var(--primary-dark); /* Header/footer background */
    --background-section-dark: var(--primary-dark); /* Dark sections like CTA */


    /* Neutral Text Colors (derived from primary colors) */
    --text-dark: #212121; /* Very dark gray, close to primary-dark */
    --text-medium: #424242; /* Medium gray for paragraphs */
    --text-light: #E0E0E0; /* Light gray for text on dark backgrounds */
    --text-white: var(--primary-white); /* Pure white text */

    /* Borders & Shadows (derived from primary colors) */
    --border-color: #E0E0E0; /* Light gray border */
    --shadow-color: rgba(0, 0, 0, 0.08); /* Subtle shadow */

    /* Specific Component Colors */
    --active-link-color: var(--accent-color); /* Active nav link uses accent */
    --form-focus-shadow: rgba(117, 129, 115, 0.25); /* Derived from accent-color */
    --icon-color: var(--accent-color); /* Icons use accent color */

    /* Gradients (using accent colors for subtle effect) */
    --gradient-start: var(--accent-color);
    --gradient-end: var(--accent-dark-color);
    --dark-gradient-start: var(--background-section-dark); /* For CTA section */
    --dark-gradient-end: var(--primary-dark); /* Pure black for deepest dark */


    /* Font Sizes */
    --font-size-base: 1rem;
    --font-size-sm: 0.8rem;
    --font-size-lg: 1rem;
    --font-size-lead: 1rem;
    --font-size-h1: 3rem;
    --font-size-h1-page: 2.5rem;
    --font-size-h2: 2rem;
    --font-size-h3: 1.5rem;
    --font-size-h4: 1.3rem;
    --font-size-h5: 1.1rem;
    --font-size-h6: 0.95rem;

    /* Font Weights */
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 50px;
    --spacing-xl: 100px;
    --spacing-xxl: 120px;

    /* Border Radius */
    --border-radius-sm: 5px;
    --border-radius-md: 10px;
}

/* Dark Theme Variables */
[data-theme="dark"] {
    /* Primary Colors */
    --primary-dark: #020402; /* Main dark color (almost black) */
    --primary-white: #FFFFFF; /* Main white color */

    /* Accent Color (Same, it should pop on dark) */
    --accent-color: #758173;
    --accent-dark-color: #5C665A;
    --accent-light-color: #A0A89F;

    /* Neutral Backgrounds (derived for dark theme) */
    --background-light: #1A1A1A; /* Main content background (dark gray) */
    --background-medium: #2C2C2C; /* Slightly lighter dark gray */
    --background-card: #222222; /* Darker cards */
    --background-dark: var(--primary-dark); /* Header/footer background (pure black) */
    --background-section-dark: #1A1A1A; /* Dark sections like CTA (dark gray) */


    /* Neutral Text Colors (derived for dark theme) */
    --text-dark: var(--primary-white); /* White text on dark backgrounds */
    --text-medium: #E0E0E0; /* Lighter gray for paragraphs */
    --text-light: #B0B0B0; /* Even lighter gray for subtle text */
    --text-white: var(--primary-white); /* Pure white text */

    /* Borders & Shadows (derived for dark theme) */
    --border-color: #494949; /* Darker border for contrast */
    --shadow-color: rgba(255, 255, 255, 0.05); /* Subtle light shadow */

    /* Specific Component Colors */
    --active-link-color: var(--accent-color);
    --form-focus-shadow: rgba(117, 129, 115, 0.25);
    --icon-color: var(--accent-color);

    /* Gradients (using accent colors) */
    --gradient-start: var(--accent-color);
    --gradient-end: var(--accent-dark-color);
    --dark-gradient-start: var(--background-section-dark);
    --dark-gradient-end: var(--primary-dark);
}
* {
    box-sizing: border-box;
}
/* General Body Styles */
body {
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    padding-top: 56px; /* Adjust for fixed header height */
    font-size: var(--font-size-base);
}
/* Headings Font Family and Weight */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif !important;
    font-weight: var(--font-weight-semibold) !important;
    color: var(--text-dark); /* Headings use text-dark by default */
}
.container {
    width: 100%;
    max-width: 1472px;
    padding: 0 16px;
    margin: 0 auto;
}

/* Override specific elements that might need a different weight (e.g., hero H1, navbar brand) */
.hero-section__title { /* Specific class for hero H1 */
    font-weight: var(--font-weight-bold);
    color: var(--text-white); /* Hero title is always white */
}
.navbar-brand {
    font-weight: var(--font-weight-bold);
}


/*------------------------------------*\
    #GLOBAL COMPONENTS
\*------------------------------------*/

/* Buttons */
.btn-primary {
    background-color: var(--primary-dark); /* Buttons use accent color */
    border-color: var(--primary-dark);
    padding: 12px 30px;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--border-radius-sm);
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
.btn:focus-visible {
    box-shadow: none;
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active,
.btn:active,
.btn:focus-visible,
.btn-primary:hover {
    background-color: var(--accent-dark-color); /* Hover to darker accent */
    border-color: var(--accent-dark-color);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--accent-color);
    border-color: var(--accent-color);
    padding: 12px 30px;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--border-radius-sm);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.btn-outline-primary:hover {
    background-color: var(--accent-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-light {
    background-color: var(--text-white);
    border-color: var(--text-white);
    color: var(--text-dark); /* Text on light button is accent color */
    padding: 12px 30px;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--border-radius-sm);
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.btn-light:hover {
    background-color: var(--background-light);
    border-color: var(--background-light);
    color: var(--accent-dark-color);
    transform: translateY(-2px);
}

/* Cards (General styles for all cards, can be overridden by specific section styles) */
.card {
    background-color: var(--background-card); /* Cards use background-card */
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow-color);
}

.card-title {
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark); /* Card titles use text-dark */
    font-size: var(--font-size-h5);
}

.card-body {
    padding: var(--spacing-md);
}

/* List Groups (for services/capabilities) */
.list-group-item {
    border: none;
    padding: var(--spacing-sm) 0;
    font-size: var(--font-size-lg);
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
    background-color: transparent; /* Ensure transparency for theme */
}

.list-group-item:last-child {
    border-bottom: none;
}

/* Contact Form */
.form-label {
    font-weight: var(--font-weight-medium);
    color: var(--text-dark);
}

.form-control {
    border-radius: var(--border-radius-sm);
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    background-color: var(--background-medium); /* Form fields slightly darker */
    color: var(--text-dark);
}

.form-control:focus {
    border-color: var(--accent-color); /* Focus uses accent */
    box-shadow: 0 0 0 0.25rem var(--form-focus-shadow);
    background-color: var(--background-card); /* Lighter on focus */
}


/*------------------------------------*\
    #HEADER
\*------------------------------------*/

.main-header {
    background-color: var(--background-dark) !important; /* Header uses background-dark */
    border-bottom: 1px solid var(--primary-white);
}

.navbar-brand {
    font-size: var(--font-size-h5);
    color: var(--text-white) !important; /* Navbar brand is white on dark header */
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    display: block;
    width: 100%;
    max-width: 150px;
}
.navbar-brand svg{
    width: 100%;
    height: auto;
}

.main-nav .nav-link {
    color: var(--active-link-color) !important;
    font-weight: var(--font-weight-medium);
    margin-left: var(--spacing-sm);
    transition: color 0.3s ease;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    color: var(--text-light) !important; /* Nav links are light on dark header */
}
.navbar-toggler {
    border: none;
}
.navbar-toggler:focus {
    box-shadow: none;
}

/*------------------------------------*\
    #PAGE HEADER SECTION (General for all sub-pages)
\*------------------------------------*/
.page-header-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--background-medium); /* Page header uses background-medium */
    color: var(--text-dark);
}

.page-header-section__title {
    font-size: var(--font-size-h1-page);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark); /* Page title uses text-dark */
}

.page-header-section .container {
    max-width: 1200px;
}
.page-header-section__description {
    font-size: var(--font-size-lead);
    color: var(--text-medium);
}


/*------------------------------------*\
    #HERO SECTION (Homepage Specific)
\*------------------------------------*/

.hero-section {
    background: url(../images/home-hero-bg.jpg) no-repeat center center/cover;
    min-height: calc(100vh - 58px);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-section::before {
    content: "";
    background: var(--dark-gradient-end); /* Overlay uses dark gradient end */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
}
.hero-section__content {
    position: relative;
    z-index: 1;
    color: var(--text-white);
    max-width: 1200px;
    margin: 0 auto;
}

.hero-section__title {
    font-size: var(--font-size-h1);
    margin-bottom: var(--spacing-md);
    color: var(--text-white);
}

.hero-section__description {
    font-size: var(--font-size-lead);
    color: var(--text-white);
    margin-bottom: var(--spacing-lg);
}


/*------------------------------------*\
    #TRUST SECTION (Homepage Specific - Sticky Design)
\*------------------------------------*/

.trust-section {
    background-color: var(--background-light);
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    position: relative;
}

.trust-section__row {
    align-items: flex-start;
}

.trust-section__sticky-lhs {
    position: sticky;
    top: var(--spacing-xl);
}

.trust-section__title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-bold);
    color: var(--text-dark); /* Trust section title uses text-dark */
    margin-bottom: var(--spacing-sm);
}

.trust-section__description {
    font-size: var(--font-size-lg);
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
}

.trust-section__scrollable-rhs {
   display: flex;
   flex-direction: column;
   gap: var(--spacing-sm);
   position: relative;
}

.trust-section__content-box {
    background-color: var(--background-card); /* Content boxes use background-card */
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    border: 2px dashed var(--accent-color);
    position: sticky;
    top: var(--spacing-xl);
}

.trust-section__content-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.trust-section__feature-icon {
    font-size: 3rem;
    color: var(--icon-color);
    margin-bottom: var(--spacing-sm);
}

.trust-section__content-box-title {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark); /* Content box title uses text-dark */
    margin-bottom: var(--spacing-xs);
}

.trust-section__content-box-text {
    font-size: var(--font-size-base);
    color: var(--text-medium);
}

.trust-section__content-box-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-sm);
    margin-top: var(--spacing-sm);
}


/*------------------------------------*\
    #SERVICES GRID SECTION (Homepage Specific)
\*------------------------------------*/

.services-section {
    background: var(--primary-dark);
    padding: var(--spacing-lg) 0;
    color: var(--text-white);
}

.services-section__title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-sm);
    color: var(--text-white);
}

.services-section__description {
    font-size: var(--font-size-lead);
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.services-section__card {
    background-color: var(--background-card); /* Cards use background-card */
    color: var(--text-dark);
    border-radius: var(--border-radius-md);
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.services-section__card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 25px var(--shadow-color);
}

.services-section__icon {
    font-size: 2.5rem;
    color: var(--icon-color);
    margin-bottom: var(--spacing-sm);
}

.services-section__card-title {
    color: var(--text-dark); /* Card titles use text-dark */
    font-weight: var(--font-weight-semibold);
}

.services-section__card-text {
    font-size: var(--font-size-base);
    color: var(--text-medium);
    margin: 0;
}


/*------------------------------------*\
    #EXCELLENCE SECTION (Homepage Specific)
\*------------------------------------*/

.excellence-section {
    background-color: var(--background-light);
    padding: var(--spacing-lg) 0;
}

.excellence-section__title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-md);
    color: var(--text-dark); /* Excellence title uses text-dark */
}

.excellence-section__item {
    background-color: var(--background-card); /* Excellence items use background-card */
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    box-shadow: 0 3px 10px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
}

.excellence-section__item:last-child {
    margin-bottom: 0;
}

.excellence-section__item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.excellence-section__icon {
    font-size: 2rem;
    color: var(--icon-color);
    min-width: 40px;
    text-align: center;
    margin-right: var(--spacing-xs);
    flex-shrink: 0;
}

.excellence-section__item-title {
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark); /* Excellence item title uses text-dark */
    margin-bottom: var(--spacing-xs);
}

.excellence-section__item-text {
    font-size: var(--font-size-base);
    color: var(--text-medium);
}


/*------------------------------------*\
    #CALL TO ACTION SECTION (General for all pages)
\*------------------------------------*/
.cta-section  {
    padding: 0 0 var(--spacing-lg);
}
.cta-content{
    background: linear-gradient(to right, var(--dark-gradient-start), var(--dark-gradient-end));
    padding: var(--spacing-md);
    color: var(--text-white);
    text-align: center;
    border-radius: var(--border-radius-md);
}
.cta-section__title {
    font-size: var(--font-size-h2);
    margin-bottom: var(--spacing-md);
    color: var(--text-white);
}

.cta-section__description {
    font-size: var(--font-size-lead);
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
}


/*------------------------------------*\
    #SERVICES DETAIL SECTION (Services Page Specific)
\*------------------------------------*/
.services-detail-section {
    background-color: var(--background-light);
    padding: var(--spacing-lg) 0;
}

.services-detail-section__item {
    background-color: var(--background-card); /* Service detail items use background-card */
}
.services-detail-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-md);
}
.services-detail-section__icon {
    font-size: 3rem;
    color: var(--icon-color);
    margin-bottom: var(--spacing-sm);
}

.services-detail-section__item-title {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark); /* Service detail item title uses text-dark */
    margin-bottom: var(--spacing-sm);
}

.services-detail-section__item-text {
    font-size: var(--font-size-base);
    color: var(--text-medium);
    margin-bottom: var(--spacing-sm);
}

.services-detail-section__list .list-group-item {
    font-size: var(--font-size-base);
    color: var(--text-medium);
    padding: 0 0 var(--spacing-sm);
    margin: 0 0 var(--spacing-sm);
    border-bottom: var(--accent-color) solid 1px;
}
.services-detail-section__list .list-group-item:last-child {
    margin: 0;
}


/*------------------------------------*\
    #ABOUT CONTENT SECTION (About Us Page Specific)
\*------------------------------------*/
.about-content-section {
    background-color: var(--background-light);
    padding: var(--spacing-lg) 0;
}

/*------------------------------------*\
    #TEAM SECTION (About Us Page Specific)
\*------------------------------------*/
.team-section {
    background-color: var(--background-medium); /* Team section uses background-medium */
    padding: var(--spacing-lg) 0;
}
.who-we-are-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-md);
}
.team-section__title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark); /* Team title uses text-dark */
    margin-bottom: var(--spacing-sm);
}

.team-section__member {
    background-color: var(--background-card); /* Team member cards use background-card */
    transition: background-color 0.3s ease;
}

.team-section__member-name {
    font-size: var(--font-size-h5);
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark); /* Team member name uses text-dark */
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
}

.team-section__member-role {
    font-size: var(--font-size-base);
    color: var(--text-medium);
    margin-bottom: var(--spacing-sm);
}

.team-section__member-bio {
    font-size: var(--font-size-sm);
    color: var(--text-medium);
}
.mission-vision-section {
    padding: var(--spacing-lg) 0;
}
.mission-vision-section .mission-vision-box{
    height: 100%;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    padding: var(--spacing-md);
    border: 1px dashed var(--accent-light-color);
}

/*------------------------------------*\
    #CONTACT CONTENT SECTION (Contact Us Page Specific)
\*------------------------------------*/
.contact-content-section {
    background-color: var(--background-light);
    padding: var(--spacing-lg) 0;
}

.contact-content-section__heading {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark); /* Contact heading uses text-dark */
    margin-bottom: var(--spacing-md);
}

.contact-content-section__form .form-label {
    font-weight: var(--font-weight-medium);
    color: var(--text-dark);
}

.contact-content-section__form .form-control {
    border-radius: var(--border-radius-sm);
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    background-color: var(--background-medium); /* Form fields use background-medium */
    color: var(--text-dark);
}

.contact-content-section__form .form-control:focus {
    border-color: var(--accent-color); /* Focus uses accent */
    box-shadow: 0 0 0 0.25rem var(--form-focus-shadow);
    background-color: var(--background-card); /* Lighter on focus */
}

.contact-content-section__info-item {
    font-size: var(--font-size-base);
    color: var(--text-medium);
    margin-bottom: var(--spacing-sm);
}

.contact-content-section__info-item i {
    color: var(--icon-color);
}

.contact-content-section__info-item a {
    color: var(--text-dark);
    transition: color 0.3s ease;
}
.contact-content-section__info-item a:hover {
    color: var(--accent-color);
}

.contact-content-section__subheading {
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark); /* Contact subheading uses text-dark */
    margin-bottom: var(--spacing-sm);
}

.contact-content-section__map iframe {
    border-radius: var(--border-radius-md);
    box-shadow: 0 5px 15px var(--shadow-color);
}


/*------------------------------------*\
    #FOOTER
\*------------------------------------*/

.main-footer {
    background-color: var(--background-dark) !important; /* Footer uses background-dark */
    color: var(--text-white); /* Footer text is white on dark background */
    padding: var(--spacing-md) 0;
    text-align: center;
    transition: background-color 0.3s ease;
}

.main-footer__text {
    margin-bottom: 10px;
}

.main-footer__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-footer__nav-item {
    display: inline-block;
    margin: 0 10px;
}

.main-footer__nav-link {
    color: var(--active-link-color); /* Footer nav links are light on dark background */
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-footer__nav-link:hover {
    color: var(--text-white);
}

.link-hover:hover{
    text-decoration: underline !important;
}

/*------------------------------------*\
    #RESPONSIVE ADJUSTMENTS
\*------------------------------------*/

@media (max-width: 991.98px) {
    .main-nav .main-nav__list{
        padding: 50px 0;
    }
    .main-nav .nav-link {
        padding: 10px 0;
        font-size: 24px;
        text-align: center;
        margin: 0;
    }
    :root {
        --font-size-base: 0.95rem;
        --font-size-sm: 0.75rem;
        --font-size-lg: 0.95rem;
        --font-size-lead: 0.95rem;
        --font-size-h1: 2.5rem;
        --font-size-h1-page: 2.2rem;
        --font-size-h2: 1.8rem;
        --font-size-h3: 1.3rem;
        --font-size-h4: 1.15rem;
        --font-size-h5: 1rem;
        --font-size-h6: 0.9rem;
    }
    .hero-section__description {
        font-size: var(--font-size-base);
    }
    .trust-section__sticky-lhs {
        margin-bottom: var(--spacing-md);
        position: static;
        top: unset;
    }
    .trust-section__title,
    .trust-section__description {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    :root {
        --font-size-base: 0.85rem;
        --font-size-sm: 0.65rem;
        --font-size-lg: 0.85rem;
        --font-size-lead: 0.85rem;
        --font-size-h1: 1.8rem;
        --font-size-h1-page: 1.8rem;
        --font-size-h2: 1.5rem;
        --font-size-h3: 1.1rem;
        --font-size-h4: 0.95rem;
        --font-size-h5: 0.9rem;
        --font-size-h6: 0.8rem;
      }
    .hero-section {
        min-height: 60vh;
        padding: var(--spacing-lg) 0;
    }
    .hero-section__description {
        font-size: var(--font-size-sm);
    }
    .btn-lg {
        padding: 10px 25px;
        font-size: var(--font-size-base);
    }
    /* General section padding */
    section {
        padding: var(--spacing-lg) 0;
    }
    /* General section h2 adjustment for smaller screens */
    .who-we-are-img {
        min-height: 230px;
    }
    .cta-section__title {
        font-size: var(--font-size-h3);
    }
}
