/* Base Styles */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: #ffffff;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 2rem;
    font-family: "Segoe UI", sans-serif;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.5rem;
    text-align: left;
}

.comparison-table thead {
    background-color: #d20a11; /* HSBC Red */
    color: #fff;
}

.comparison-table thead th {
    font-size: 1.1rem;
    font-weight: bold;
    border-bottom: 2px solid #c1090f;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: #f8f8f8;
}

.comparison-table tbody tr:hover {
    background-color: #f0f0f0;
    transition: background-color 0.2s ease;
}

.comparison-table td {
    border-bottom: 1px solid #ddd;
    color: #333;
}

.comparison-table td:last-child {
    font-weight: bold;
    color: #009688; /* MarsX teal/green */
}

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

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--background);
    padding-top: 70px; /* For fixed nav */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

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

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

/* Section Styles */
section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 2rem;
    color: var(--hsbc-dark-blue);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--hsbc-blue);
}

/* Problem & Solution Section */
.problem-solution {
    background-color: var(--hsbc-light-gray);
}

.problem-solution .columns {
    display: flex;
    gap: 30px;
}

.problem-solution .column {
    flex: 1;
    padding: 30px;
    border-radius: 8px;
    background-color: var(--hsbc-white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.problem-solution .column h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--hsbc-dark-blue);
}

.problem-solution .column ul {
    list-style: none;
}

.problem-solution .column ul li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.problem-solution .column ul li:before {
    content: "•";
    color: var(--hsbc-red);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.problem-solution .challenge ul li:before {
    color: var(--hsbc-red);
}

.problem-solution .solution ul li:before {
    color: var(--hsbc-green);
}

/* How It Works Section */
.how-it-works .steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.how-it-works .step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 30px;
    background-color: var(--hsbc-white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.how-it-works .step:hover {
    transform: translateY(-10px);
}

.how-it-works .step-number {
    width: 50px;
    height: 50px;
    background-color: var(--hsbc-red);
    color: var(--hsbc-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.how-it-works .step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--hsbc-dark-blue);
}

/* Features Section */
.features {
    background-color: var(--hsbc-light-gray);
}

.features .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.features .feature-card {
    background-color: var(--hsbc-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.features .feature-card:hover {
    transform: translateY(-10px);
}

.features .feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.features .feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--hsbc-dark-blue);
}

/* Security Section */
.security {
    background-color: var(--hsbc-dark-blue);
    color: var(--hsbc-white);
}

.security .section-header h2,
.security .section-header p {
    color: var(--hsbc-white);
}

.security .security-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.security .security-card {
    flex: 1;
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--hsbc-red);
}

.security .security-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--hsbc-white);
}

/* CTA Section */
.cta-section {
    text-align: center;
    background-color: var(--hsbc-red);
    color: var(--hsbc-white);
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Footer */
.hsbc-footer {
    background-color: var(--hsbc-dark-blue);
    color: var(--hsbc-white);
    padding: 60px 0 30px;
}

.hsbc-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.hsbc-footer h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--hsbc-white);
}

.hsbc-footer ul {
    list-style: none;
}

.hsbc-footer ul li {
    margin-bottom: 10px;
}

.hsbc-footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.hsbc-footer ul li a:hover {
    color: var(--hsbc-white);
}

.hsbc-footer .footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hsbc-nav .container {
        flex-direction: column;
    }

    .hsbc-nav .nav-links {
        margin-top: 15px;
    }

    .problem-solution .columns {
        flex-direction: column;
    }

    .how-it-works .steps {
        flex-direction: column;
        align-items: center;
    }

    .how-it-works .step {
        max-width: 100%;
    }
}
/* About Page Specific Styles */
.about-hero {
    background:
        linear-gradient(rgba(0, 61, 93, 0.5), rgba(0, 61, 93, 0.5)),
        url("../images/giza-egypt-pyramids.jpg");
    background-size: cover;
    background-position: center;
    color: var(--hsbc-white);
    padding: 150px 0 80px;
    text-align: center;
}

.about-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.mission {
    padding: 80px 0;
    background-color: var(--hsbc-light-gray);
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-stats {
    display: flex;
    justify-content: center;
    gap: 90px;
    margin-top: 90px;
}

.stat {
    text-align: center;
}

.stat .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--hsbc-red);
    display: block;
}

.founder {
    padding: 80px 0;
}

.founder-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.founder-image {
    flex: 1;
}

.founder-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.founder-bio {
    flex: 2;
}

.founder-bio .title {
    color: var(--hsbc-blue);
    font-weight: 600;
    margin-bottom: 20px;
}

.partnership {
    background-color: var(--hsbc-light-gray);
    padding: 80px 0;
}

.partnership-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.hsbc-logo {
    flex: 1;
    text-align: center;
}

.hsbc-logo img {
    max-width: 200px;
}

.partnership-details {
    flex: 2;
}

.values {
    padding: 80px 0;
}

.values-grid {
    display: flex;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    text-align: center;
    padding: 30px;
    background-color: var(--hsbc-white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.value-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-cta {
    text-align: center;
    padding: 60px 0;
    background-color: var(--hsbc-dark-blue);
    color: var(--hsbc-white);
}

@media (max-width: 768px) {
    .founder-grid,
    .partnership-content {
        flex-direction: column;
    }

    .mission-stats,
    .values-grid {
        flex-direction: column;
        gap: 20px;
    }
}
/* Contact Page Specific Styles */
.contact-hero {
    background:
        linear-gradient(rgba(0, 61, 93, 0.8), rgba(0, 61, 93, 0.8)),
        url("../images/contact-bg.jpg");
    background-size: cover;
    background-position: center;
    color: var(--hsbc-white);
    padding: 150px 0 80px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-options {
    padding: 80px 0;
    background-color: var(--hsbc-light-gray);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.option-card {
    background-color: var(--hsbc-white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.option-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.option-card h3 {
    color: var(--hsbc-dark-blue);
    margin-bottom: 15px;
}

.option-card p {
    margin-bottom: 25px;
    color: var(--hsbc-dark-gray);
}

.demo-form-section {
    padding: 80px 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--hsbc-white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    color: var(--hsbc-dark-blue);
    margin-bottom: 10px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--hsbc-dark-blue);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form textarea {
    min-height: 120px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.disclaimer {
    font-size: 0.8rem;
    color: var(--hsbc-dark-gray);
    margin-top: 15px;
}

.contact-info {
    padding: 60px 0;
    background-color: var(--hsbc-light-gray);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.info-card {
    text-align: center;
    padding: 30px;
    background-color: var(--hsbc-white);
    border-radius: 8px;
}

.info-card .icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.info-card h3 {
    color: var(--hsbc-dark-blue);
    margin-bottom: 10px;
}

.info-card p {
    color: var(--hsbc-dark-gray);
}

@media (max-width: 768px) {
    .form-container {
        padding: 30px 20px;
    }
}
/* Add to your CSS */
section {
    position: relative;
    z-index: 1;
}
/* Navigation Styles */
.hsbc-nav {
    background-color: var(--hsbc-white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.hsbc-nav.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hsbc-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo Styles */
.hsbc-nav .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
}

.hsbc-nav .marsx-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--hsbc-red);
    margin-right: 12px;
    transition: all 0.3s ease;
}

.hsbc-nav .partner-badge {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    color: var(--hsbc-dark-gray);
}

.hsbc-nav .partner-text {
    margin-right: 8px;
    white-space: nowrap;
}

.hsbc-nav .partner-badge img {
    height: 30px;
    transition: all 0.3s ease;
}

/* Navigation Links */
.nav-container {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin-right: 30px;
}

.nav-links li {
    position: relative;
    margin-left: 15px;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
    color: var(--hsbc-dark-gray);
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.link-icon {
    margin-right: 8px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.link-text {
    position: relative;
}

.link-text::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--hsbc-red);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--hsbc-red);
    background-color: rgba(219, 0, 17, 0.05);
}

.nav-link:hover .link-text::after,
.nav-link:focus .link-text::after {
    width: 100%;
}

/* Active State */
.nav-link.active {
    color: var(--hsbc-red);
    font-weight: 600;
}

.nav-link.active .link-text::after {
    width: 100%;
}

/* CTA Button */
.nav-cta {
    margin-left: 20px;
}

.nav-button {
    display: flex;
    align-items: center;
    padding: 12px 20px;
}

.button-icon {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Language Selector */
.language-selector {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--hsbc-light-gray);
    margin-left: 20px;
}

.lang-btn {
    padding: 6px 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background-color: var(--hsbc-red);
    color: white;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.toggle-bar {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--hsbc-red);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--hsbc-white);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }

    .nav-container.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-link {
        padding: 12px 0;
    }

    .nav-cta {
        margin: 20px 0 0;
        width: 100%;
    }

    .language-selector {
        margin-left: 0;
        margin-top: 30px;
    }

    /* Animated hamburger icon */
    .mobile-menu-toggle.active .toggle-bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-toggle.active .toggle-bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active .toggle-bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}
.mission {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
    color: #d20a11; /* HSBC Red */
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.mission-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.2s ease;
}

.mission-card:hover {
    transform: translateY(-4px);
}

.mission-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #009688; /* MarsX teal */
}

.mission-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #222;
}

.mission-card p {
    font-size: 0.95rem;
    color: #555;
}
.partnership {
    padding: 4rem 0;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #d20a11;
    margin-bottom: 2.5rem;
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.benefit-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.2s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #009688;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #555;
}

.cta-wrapper {
    text-align: center;
    margin-top: 2rem;
}

.cta-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.hsbc-button.primary {
    background-color: #d20a11;
    color: white;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.hsbc-button.primary:hover {
    background-color: #b0080f;
} /* Core Values Section */
.values {
    padding: 4rem 0;
    background-color: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    color: #d20a11;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1rem;
    color: #777;
    margin-bottom: 2.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card h3 {
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.value-card p {
    font-size: 0.95rem;
    color: #555;
    margin-top: 0.5rem;
}

.icon.badge {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: #e0e0e0;
    color: white;
}

.badge-red {
    background-color: #d20a11;
}

.badge-blue {
    background-color: #0071bc;
}

.badge-green {
    background-color: #2e7d32;
}

/* CTA Section */
.about-cta {
    padding: 3rem 0;
    background-color: #fff;
    text-align: center;
}

.cta-title {
    font-size: 1.8rem;
    color: #1b1b1b;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hsbc-button.large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 10px;
}
/* Navigation */
.hsbc-nav {
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    font-weight: bold;
}

.marsx-logo {
    font-size: 1.4rem;
    color: #d20a11;
}

.partner-badge {
    font-size: 0.75rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.partner-badge img {
    height: 18px;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1.25rem;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links li a:hover {
    color: #d20a11;
}

/* Buttons */
.hsbc-button {
    padding: 0.5rem 1.1rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.hsbc-button.primary {
    background-color: #d20a11;
    color: #fff;
}

.hsbc-button.secondary {
    background-color: transparent;
    border: 1px solid #d20a11;
    color: #d20a11;
}

.hsbc-button.primary:hover,
.hsbc-button.secondary:hover {
    opacity: 0.9;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        display: none;
        margin-top: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }
}

<style > body {
    font-family: "Segoe UI", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #d20a11;
}

/* Navigation */
.hsbc-nav {
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
}

.logo {
    text-decoration: none;
    font-weight: bold;
}

.marsx-logo {
    font-size: 1.5rem;
    color: #d20a11;
}

.partner-badge {
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #444;
}

.partner-badge img {
    height: 18px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
    padding: 0;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    background-color: #f0f0f0;
}

.hsbc-button.primary {
    background: #d20a11;
    color: white;
}

.hsbc-button.secondary {
    border: 1px solid #d20a11;
    color: #d20a11;
}

/* Section Styling */
section {
    margin-bottom: 3rem;
}

ul {
    padding-left: 1.5rem;
}

ul li {
    margin-bottom: 0.5rem;
}

/* Core Values */
.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-card {
    flex: 1 1 250px;
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.hsbc-red {
    color: #d20a11;
}
.hsbc-blue {
    color: #004f9e;
}
.hsbc-green {
    color: #2e7d32;
}

/* Call to Action */
.about-cta {
    background-color: #d20a11;
    color: white;
    text-align: center;
    padding: 3rem 1.5rem;
}

.about-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.about-cta .hsbc-button {
    margin-top: 1rem;
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #fff;
    color: #d20a11;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-cta .hsbc-button:hover {
    background-color: #f5f5f5;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 0.75rem;
    }

    .values-grid {
        flex-direction: column;
    }
}
c
