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

html {
    font-size: 16px;
}

:root {
    --header-height: 100px;
}

@keyframes headerReveal {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    width : 100%;
    font-family: Georgia, serif;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.legal-page {
    background-color: #ffffff;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ======================= HOME ======================= */
header {
    width: 100%;
    height: 100px;
    background-color: #000000;
    padding: 20px 40px 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1100;
}

.title {
    display: flex;
    align-items: center;
    padding: 10px 0;
    text-decoration: none;
    font-size: 1.75rem;
}

.title img {
    height: 100px;
    width: auto;
    margin-right: 0px;
    display: block;
}

.title h1 {
    margin: 0;
    line-height: 1;
    background-color: #9e9e9e;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.75rem;
    font-weight: 300;
    letter-spacing: 1px;
    filter: brightness(1.1) contrast(1.2);
}

.page_content {
    background-color: #ffffff;
    flex: 1;
    padding: 20px;
    margin-top: 0;
}

.page_content h1 {
    margin-top: 48px;
    font-size: 2rem;
    text-align: center
}

.sectors-page h1 {
    margin-top: 48px;
}

.page_content p {
    margin: 20px 0;
    font-size: 1.125rem;
    line-height: 1.6;
    text-align: left;

}

.nav {
    list-style: none;
    display: flex;
    gap: 40px;
    position: absolute;
    right: 80px;
    top: 0;
    bottom: 0;
    align-items: center;
}

.navitem:hover {
    text-decoration: none;
}

.welcome-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 60px 80px;
    margin-top: 50px;
    background: #ffffff;
    min-height: 400px;
}

@media (max-width: 1024px) {
    .welcome-banner {
        flex-direction: column;
        padding: 40px 24px;
    }

    .banner-text {
        width: 100%;
        order: 1;
    }

    .banner-image {
        width: 100%;
        order: 2;
    }
}

.banner-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-image img {
    max-width: 100%;
    max-height: 350px;
    object-fit: contain;
    border-radius: 1rem;
}

.banner-text {
    flex: 1;
    color: black;
    padding: 20px;
    text-align: center;
}

.banner-text h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    font-weight: 600;
    display: block;
    max-width: 24ch;
    margin: 0 auto;
}

.banner-text p {
    padding-top: 1rem;
    font-size: 1.25rem;
    margin: 1rem 0 0;
    line-height: 1.6;
}

.banner-text p1 {
    display: block;
    font-size: 0.875rem;
    margin-top: 2.5rem;
    line-height: 1.6;
    font-weight: 600;
    color: #000000;
}
/* ================ Contact Section ================ */
        .contact-us {
            max-width: 680px;
            margin: 60px auto 80px;
            padding: 0 24px;
        }

        .contact-us h3 {
            font-size: 1.4rem;
            margin-bottom: 8px;
        }

        .contact-us .contact-sub {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 32px;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

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

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .form-group label {
            font-size: 0.82rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: #444;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 11px 14px;
            border: 1.5px solid #ddd;
            border-radius: 6px;
            font-size: 0.95rem;
            font-family: inherit;
            background: #fafafa;
            transition: border-color 0.2s, box-shadow 0.2s;
            outline: none;
            width: 100%;
            box-sizing: border-box;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #1a1a2e;
            box-shadow: 0 0 0 3px rgba(26, 26, 46, 0.08);
            background: #fff;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 130px;
        }

        .form-submit {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 32px;
            background: #000000;
            color: #fff;
            border: none;
            border-radius: 6px;
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 0.03em;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            align-self: flex-start;
        }

        .form-submit:hover {
            background: #2c2c2c;
        }

        .form-submit:active {
            transform: scale(0.98);
            background: #111111;
        }

        .form-note {
            font-size: 1rem;
            color: white;
            margin-top: 3px;
            line-height: 1.5rem;
        }

        /* Success state (Netlify redirects by default, but nice to have) */
        .form-success {
            display: none;
            padding: 16px 20px;
            background: #f0faf4;
            border: 1.5px solid #a8d5ba;
            border-radius: 6px;
            color: #2d6a4f;
            font-size: 0.95rem;
        }

        @media (max-width: 600px) {
            .form-row {
                grid-template-columns: 1fr;
            }
            .form-submit {
                width: 100%;
                justify-content: center;
            }
        }

/* =================== Waitlist Consent =================== */
.form-group.form-consent label {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.85rem;
            font-weight: 400;
            letter-spacing: normal;
            text-transform: none;
            color: #555;
            line-height: 1.55;
            cursor: pointer;
        }

        .form-group.form-consent input[type="checkbox"] {
            -webkit-appearance: checkbox;
            appearance: checkbox;
            width: 16px;
            min-width: 16px;
            height: 16px;
            padding: 0;
            margin-top: 3px;
            border: initial;
            border-radius: 0;
            background: initial;
            box-shadow: none;
            accent-color: #1a1a2e;
            flex-shrink: 0;
            cursor: pointer;
        }

        .form-group.form-consent input[type="checkbox"]:focus-visible {
            outline: 2px solid #1a1a2e;
            outline-offset: 2px;
        }

        .form-group.form-consent a {
            color: #1a1a2e;
            text-decoration: underline;
        }

        .form-group.form-consent a:hover {
            color: #000000;
        }


/* =================== General Page =================== */
.general-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 80px;
    background: #ffffff;
    min-height: 400px;
}

.general-text {
    color: black;
    padding: 20px;
    text-align: center;
    order: -1;
}

.general-text h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.general-text p {
    font-size: 1.125rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: -10px;
}

.general-image img {
    max-width: 100%;
    max-height: 350px;
    object-fit: contain;
    border-radius: 1rem;
}

/* =================== Sectors Page =================== */
.sectors-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(220px, 1fr));
      gap: 2rem;
      padding: 2rem 1rem;
      max-width: 980px;
      margin: 0 auto;
    }

    .sector-card {
      text-align: center;
      transition: transform 0.3s ease;
    }

    .sector-card:hover {
      transform: scale(1.02);
    }

    .sector-card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 8px;
      cursor: pointer;
      transition: filter 0.3s ease;
    }

    .sector-card img:hover {
      filter: brightness(0.8);
    }

    .sector-card a {
      text-decoration: none;
      color: inherit;
    }

    .sector-name {
      font-size: 1.25rem;
      font-weight: bold;
      margin-top: 1rem;
      color: #333;
    }

    /* Responsive: single-column mobile stack */
    @media (max-width: 768px) {
      .sectors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
    }
/* =================== About Page =================== */
@media (max-width: 768px) {
    .about-layout {
        grid-template-columns: 1fr;
    }
}

.motto {
    max-width: 960px;
    margin: 70px auto 60px;
    padding: 0;
}

.motto p {
    margin: 0;
    color: black;
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    text-align: center;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: stretch;
    max-width: 960px;
    margin: 0 auto 60px;
    padding: 0;
}

.mission, .vision {
    background: #000000;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 220px;
}

.mission h2, .vision h2 {
    font-size: 1.45rem;
    margin-bottom: 14px;
    color: #ffffff;
    text-align: left;
}

.mission p, .vision p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #ffffff;
    text-align: left;
    margin: 0;
}

@media (max-width: 1200px) {
    .motto {
        margin: 50px 20px 60px;
    }

    .mission-vision-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 20px;
        margin: 0 20px 60px;
    }
    
    .logo {
        max-width: 150px;
    }
}

@media (max-width: 768px) {
    .motto {
        margin: 40px 15px;
    }

    .mission-vision-grid {
        gap: 20px;
        padding: 15px;
        margin: 0 15px 40px;
    }
    
    .logo {
        display: none;
    }
}
/* =================== Team Page =================== */
.team {
    padding: 0 80px 60px;
    background-color: #ffffff;
}

.team h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.75rem;
    color: #000000;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 28px;
    align-items: stretch;
    max-width: 760px;
    margin: 0 auto;
}

.team-member {
    background: #f7f7f7;
    border: 1px solid #ebebeb;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-member:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.team-member img {
    width: 120px;
    height: 120px;
    background-color: #000000;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: block;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #111111;
}

.team-member p {
    font-size: 1rem;
    color: #4d4d4d;
    margin: 0;
    text-align: center;
}

.team-role-row {
    margin-top: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.team-role {
    font-size: 1rem;
    color: #4d4d4d;
    margin: 0;
}

.team-linkedin-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid #000000;
    border-radius: 999px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.team-linkedin-btn ion-icon {
    font-size: 0.95rem;
}

.team-linkedin-btn:hover {
    background-color: #ffffff;
    color: #000000;
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 768px) {
    .team {
        padding: 0 20px 40px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* =================== About Follow Us =================== */
.follow-us {
    max-width: 760px;
    margin: 0 auto 70px;
    padding: 28px 24px;
    border: 1px solid #ebebeb;
    border-radius: 16px;
    background-color: #f7f7f7;
    text-align: center;
}

.follow-us h2 {
    font-size: 1.55rem;
    color: #111111;
    margin-bottom: 10px;
}

.follow-us p {
    margin: 0 0 24px;
    font-size: 1rem;
    color: #4d4d4d;
    text-align: center;
}

.follow-us-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.follow-us-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 180px;
    padding: 12px 14px;
    border: 1px solid #dbdbdb;
    border-radius: 10px;
    background-color: #ffffff;
    color: #111111;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.follow-us-links a ion-icon {
    font-size: 1.1rem;
}

.follow-us-links a:hover {
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .follow-us {
        margin: 0 20px 40px;
        padding: 24px 18px;
    }

    .follow-us-links {
        justify-content: center;
    }
}

/* =================== ToS & Privacy Page =================== */

.legal-page {
    max-width: 780px;
    margin: 48px auto 80px;
    padding: 0 24px;
    line-height: 1.75;
    color: #2b2b2b;
}
.legal-page h2 {
    font-size: 2rem;
    margin-bottom: 6px;
}
.legal-meta {
    font-size: 0.85rem;
    font-weight: 500;
    color: #888;
    margin-bottom: 40px;
}
.legal-page h3 {
    font-size: 1.125rem;
    margin-top: 40px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1a1a2e;
}
.legal-page h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 4px;
}
.legal-page p {
    margin-top: 6px;
    font-size: 1rem;
}
.legal-page a {
    color: #1a1a2e;
    text-decoration: underline;
}
.legal-page ul {
    margin: 8px 0 8px 20px;
    font-size: 1rem;
}
.legal-page ul li {
    margin-bottom: 4px;
}
.legal-divider {
    border: none;
    border-top: 1px solid black;
    margin: 40px 0;
}

.acknowledgement {
    margin-top: 60px;
    padding: 20px;
    background-color: #f0f0f0;
    border-left: 4px solid #000000;
}

.acknowledgement h3 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 1.125rem;
    color: #000000;
}

.acknowledgement p {
    font-size: 1rem;
    color: #000000;
}
/* =================== Nav positioning & reaction =================== */

.nav li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 1.125rem;
    transition: color 0.3s, text-shadow 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.navicon {
    font-size: 1.25rem;
    vertical-align: middle;
}

.nav li a:hover {
    color: #ffffff;
    text-decoration: none;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8), 0 0 16px rgba(255, 255, 255, 0.45);
}

.nav li {
    position: relative;
}

/* ======================== PDF Styles ======================== */

.doc-list {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 20px;
    text-align: center;
}

.doc-list h3 {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.doc-list p {
    font-size: 1.125rem;
    margin-bottom: 16px;
}

.doc-row-link {
    display: block;
    text-decoration: none;
}

.doc-row {
    display: grid;
    grid-template-columns: 88px 1fr;
    align-items: center;
    gap: 20px;
    width: 100%;
    border: 1px solid #d4d4d4;
    border-radius: 14px;
    padding: 18px 22px;
    cursor: pointer;
    text-align: left;
    background-color: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    transform-origin: center;
}

.doc-row:hover {
    background-color: #eeeeee;
}

.latest-report .doc-row:hover {
    transform: scale(1.02);
    background-color: #eeeeee;
}

.doc-row:focus-visible {
    outline: 2px solid #000000;
    outline-offset: 2px;
}

.doc-row-thumb {
    width: 72px;
    height: 96px;
    border: 1px solid #d4d4d4;
    border-radius: 4px;
    overflow: hidden;
    background-color: #ffffff;
}

.doc-row-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.doc-row-title h1 {
    font-size: 1.125rem;
    font-weight: 200;
    text-align: center;
    color: #000000;
}

.doc-row-link:hover .doc-row-title h1 {
    text-decoration: underline;
}

.latest-report {
    width: 100%;
    max-width: 100%;
    margin: 60px 0 40px;
    padding: 40px 40px;
    background-color: #000000;
}

.latest-report h3 {
    color: #ffffff;
    font-size: 1.75rem;
}

@media (max-width: 768px) {
    .latest-report {
        padding: 28px 16px;
    }

    .doc-row {
        grid-template-columns: 68px 1fr;
        gap: 12px;
        padding: 14px 16px;
    }

    .doc-row-thumb {
        width: 56px;
        height: 76px;
    }

    .doc-row-title {
        font-size: 0.95rem;
    }
}

/* ======================= Hamburger Menu ======================= */
.hamburger-menu {
    position: absolute;
    left: 40px;
    z-index: 1000;
}

.hamburger-icon {
    font-size: 2rem;
    color: #b0b0b0;
    cursor: pointer;
    transition: color 0.3s, background-color 0.3s;
    padding: 5px;
    border-radius: 4px;
}

.hamburger-icon:hover {
    color: #000000;
    background-color: #b0b0b0;
}

.sidebar-nav li a:hover {
    background-color: #b0b0b0;
    color: #000000;
    text-decoration: none;
}

.sidebar-nav {
    position: fixed;
    top: 100px;
    left: -300px;
    width: 250px;
    height: calc(100vh - 100px);
    background-color: #000000;
    transition: left 0.3s ease;
    overflow-y: auto;
    padding: 20px 0;
    z-index: 1200;
}

.sidebar-nav.open {
    left: 0;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav > ul > li {
    border-bottom: 1px solid #333;
}

.sidebar-nav > ul > li > a {
    display: block;
    padding: 15px 20px;
    color: #b0b0b0;
    text-decoration: none;
    font-size: 1.125rem;
    transition: background-color 0.3s, color 0.3s, padding-left 0.3s;
}

.sidebar-nav > ul > li > a:hover {
    background-color: #b0b0b0;
    color: #000000;
    padding-left: 30px;
}

.sidebar-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #000000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.sidebar-nav li.submenu-open > .sidebar-submenu {
    max-height: 300px;
}

.sidebar-submenu li a {
    display: block;
    padding: 10px 20px 10px 40px;
    color: #b0b0b0;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s, color 0.3s;
}

.sidebar-submenu li a:hover {
    background-color: #b0b0b0;
    color: #000000;
}

/* Hide hamburger menu on large screens */
@media screen and (min-width: 1025px) {
    .hamburger-menu {
        display: none;
    }
    
}

/* Show hamburger menu and hide center nav on smaller screens */
@media screen and (max-width: 1024px) {
   .title {
       font-size: 1.4rem;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        white-space: nowrap;
        max-width: calc(100% - 120px);
        overflow: hidden;
    }
    
    .title img {
        height: 70px;
    }
    
    .title h1 {
        font-size: 1.4rem;
        white-space: nowrap;
    }
   
    .nav:not(.nav-right) {
        display: none;
    }
    
    .nav-right {
        display: none;
    }
    
    .hamburger-menu a:hover {
        background-color: black;
        color: #b0b0b0;
        text-decoration: none;

    }

    .hamburger-menu li a:hover {
    background-color: #b0b0b0;
    color: #000000;
    text-decoration: none;
    }
    
}

/* ======================= Mobile Responsive (Tablets & Small Screens) ======================= */
@media screen and (max-width: 768px) {
    :root {
        --header-height: 80px;
    }

    /* Header adjustments */
    header {
        padding: 15px 20px;
        height: 80px;
        justify-content: center;
    }
    
    .title {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        padding-left: 0;
        padding-right: 0;
        font-size: 1rem;
        gap: 6px;
    }
    
    .title img {
        display: block;
        height: 44px;
        width: auto;
        margin-right: 0;
        flex-shrink: 0;
    }
    
    .title h1 {
        font-size: 1rem;
        letter-spacing: 0.75px;
    }
    
    .hamburger-menu {
        left: 20px;
    }
    
    /* Content padding */
    .page_content {
        padding: 15px;
    }
    
    .page_content h1 {
        font-size: 1.5rem;
    }
    
    .page_content p {
        font-size: 1rem;
    }
    
    .about_page_content {
        padding: 15px 20px;
    }
    
    /* Footer adjustments */
    footer {
        padding: 15px 20px;
    }
    
    .footer-logo {
        height: 100px;
    }
    
    footer p {
        font-size: 0.875rem;
    }
    
    footer ion-icon {
        font-size: 1.5rem;
        margin: 0 8px;
    }
    
    .footer-element {
        font-size: 0.875rem;
    }
    
}

/* ======================= Mobile Responsive (Phones) ======================= */
@media screen and (max-width: 480px) {
    :root {
        --header-height: 70px;
    }

    /* Header for very small screens */
    header {
        padding: 10px 15px;
        height: 70px;
        justify-content: center;
    }
    
    .title {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        padding-left: 0;
        padding-right: 0;
        font-size: 0.8rem;
        gap: 4px;
    }
    
    .title img {
        display: block;
        height: 34px;
        width: auto;
        margin-right: 0;
        flex-shrink: 0;
    }
    
    .title h1 {
        font-size: 0.8rem;
        letter-spacing: 0.4px;
    }
    
    .hamburger-menu {
        left: 15px;
    }
    
    .hamburger-icon {
        font-size: 1.75rem;
    }
    
    /* Content adjustments */
    .page_content {
        padding: 10px;
    }
    
    .page_content h1 {
        font-size: 1.25rem;
        margin-top: 48px;
    }
    
    .page_content p {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    .about_page_content {
        padding: 10px 15px;
    }
    
    /* Sectors adjustments */
    .sectors-grid {
        padding: 1rem 0.5rem;
        gap: 1rem;
    }
    
    .sector-card img {
        height: 180px;
    }
    
    .sector-name {
        font-size: 1rem;
    }
    
    /* Footer for small screens */
    footer {
        padding: 15px;
    }
    
    .footer-logo {
        height: 80px;
    }
    
    footer p {
        font-size: 0.75rem;
        white-space: normal;
        text-align: center;
        margin: 8px auto 0;
        max-width: 30ch;
    }
    
    footer ion-icon {
        font-size: 1.25rem;
        margin: 0 6px;
    }
    
    .footer-row {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 8px;
    }
    
    .footer-separator {
        display: inline;
    }
    
    .footer-element {
        font-size: 0.75rem;
    }
    
    /* Sidebar adjustments */
    .sidebar-nav {
        top: 50px;
        height: calc(100vh - 50px);
        width: 200px;
        left: -200px;
    }
    
    .sidebar-nav > ul > li > a {
        font-size: 1rem;
        padding: 12px 15px;
    }
    
    .sidebar-submenu li a {
        font-size: 0.875rem;
        padding: 8px 15px 8px 30px;
    }
}

/* ======================= Footer ======================= */
footer {
    width: 100%;
    background-color: #000000;
    padding: 20px 40px;
    text-align: center;
    margin-top: auto;
}

.footer-logo {
    height: 120px;
    width: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
}

footer p {
    color: #b0b0b0;
    margin: 8px auto 0;
    font-size: 1rem;
    text-align: center;
}

footer ion-icon {
    font-size: 1.75rem;
    color: #b0b0b0;
    margin: 0 10px;
    cursor: pointer;
    transition: color 0.3s;
}

footer ion-icon:hover {
    color: #ffffff;
}

.footer-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.footer-element {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 1rem;
}

.footer-element:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-separator {
    color: #b0b0b0;
    font-size: 1rem;
}