body {
    font-family: 'Open Sans', sans-serif;
    color: #E0E0E0;
    background-color: #1A1A2E;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: #E0E0E0;
}

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

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #E0E0E0;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #00ADB5;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    padding: 1rem 0;
    z-index: 1000;
    transition: background-color 0s ease-in-out;
}

.header.scrolled {
    background-color: #16213E;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #00ADB5;
    text-decoration: none;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: #E0E0E0;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0s ease-in-out;
}

.nav-link:hover {
    color: #00ADB5;
}

.cta-button-nav {
    background-color: #00ADB5;
    color: #FFFFFF;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 0s ease-in-out;
    text-decoration: none;
}

.cta-button-nav:hover {
    background-color: #007B80;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: #E0E0E0;
    transition: all 0s ease-in-out;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #E0E0E0;
    background-image: url('images/media/financial-cityscape.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.8) 0%, rgba(30, 40, 70, 0.7) 50%, rgba(22, 33, 62, 0.8) 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-title .highlight {
    color: #00ADB5;
    text-shadow: 0 0 10px rgba(0, 173, 181, 0.5);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    white-space: normal;
    word-break: break-word;
}

.ghost-button {
    background-color: transparent;
    color: #00ADB5;
    border: 2px solid #00ADB5;
    box-shadow: 0 4px 15px rgba(0, 173, 181, 0.4);
    transition: background-color 0s, color 0s, box-shadow 0s;
}

.ghost-button:hover {
    background-color: #00ADB5;
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(0, 173, 181, 0.6);
}

/* About Us Section */
.about-us-section {
    padding: 6rem 0;
    background-color: #1A1A2E;
}

.about-us-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    text-align: justify;
}

.about-us-content p {
    margin-bottom: 1.5rem;
}

/* About Section Modular */
.about-section-modular {
    padding: 6rem 0;
    background-color: #16213E;
}

.module-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.module-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2rem;
    background-color: #1A1A2E;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.module-item.reverse {
    flex-direction: row-reverse;
}

.module-text {
    flex: 1;
}

.module-text h3 {
    font-size: 1.8rem;
    color: #00ADB5;
    margin-bottom: 1rem;
}

.module-text p {
    font-size: 1.1rem;
    line-height: 1.7;
}

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

.module-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background-color: #1A1A2E;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: #FFFFFF;
    color: #1A1A2E;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 280px; /* Ensure consistent height */
}

.feature-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #CCCCCC;
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 0;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #1A1A2E;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    z-index: 1;
}

.feature-card p {
    font-size: 1rem;
    color: #333333;
    line-height: 1.6;
    z-index: 1;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #00ADB5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    z-index: 1;
}

.icon-circle i {
    font-size: 2rem;
    color: #00ADB5;
}

/* How It Works Section */
.how-it-works-section {
    padding: 6rem 0;
    background-color: #16213E;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #00ADB5;
    top: 0;
    bottom: 0;
    left: 54%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

.timeline-marker {
    height: 25px;
    width: 25px;
    background-color: #00ADB5;
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.left .timeline-marker {
    right: 28px;
    top: 20px;
}

.timeline-item.right .timeline-marker {
    left: 28px;
    top: 20px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: #1A1A2E;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.timeline-content h3 {
    font-size: 1.6rem;
    color: #00ADB5;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 1rem;
}

/* Industries Section (Slider) */
.industries-section {
    padding: 6rem 0;
    background-color: #1A1A2E;
}

.slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.slider-wrapper {
    display: flex;
    width: 400%; /* 4 slides */
    transition: transform 0s ease-in-out; /* Instant transition */
}

.slide {
    width: 25%; /* Each slide takes 25% of the wrapper */
    flex-shrink: 0;
    position: relative;
    height: 450px; /* Fixed height for slides */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: #E0E0E0;
    padding: 2rem;
    max-width: 80%;
}

.slide-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #00ADB5;
}

.slide-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 173, 181, 0.7);
    color: #FFFFFF;
    border: none;
    padding: 1rem 1.2rem;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    z-index: 10;
    transition: background-color 0s;
}

.slider-control:hover {
    background-color: #00ADB5;
}

.slider-control.prev {
    left: 1rem;
}

.slider-control.next {
    right: 1rem;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background-color: #16213E;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.team-member-card {
    background-color: #1A1A2E;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    transition: transform 0.3s ease;
}

@media (min-width: 768px){
    .team-member-card {
        width: calc(50% - 80px);
    }
}
@media (min-width: 992px){
    .team-member-card {
        width: calc(25% - 80px);
    }
}

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

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00ADB5;
    margin-bottom: 1.5rem;
}

.team-member-card h3 {
    font-size: 1.6rem;
    color: #00ADB5;
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 1rem;
    color: #E0E0E0;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.team-quote {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 173, 181, 0.95);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.team-member-card:hover .team-quote {
    opacity: 1;
    visibility: visible;
}

.team-quote p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background-color: #1A1A2E;
}

.faq-widget {
    max-width: 800px;
    margin: 0 auto;
    background-color: #16213E;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    padding: 2rem;
}

.faq-search-input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 2rem;
    border: 1px solid #00ADB5;
    border-radius: 5px;
    background-color: #1A1A2E;
    color: #E0E0E0;
    font-size: 1rem;
    box-sizing: border-box;
}

.faq-search-input::placeholder {
    color: #A0A0A0;
}

.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 173, 181, 0.3);
    padding-bottom: 1rem;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: #E0E0E0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #00ADB5;
    margin-left: 1rem;
    transition: transform 0s;
}

.faq-question.active::after {
    content: '-';
    transform: rotate(0deg); /* No rotation for instant change */
}

.faq-answer {
    font-size: 1rem;
    color: #A0A0A0;
    padding-top: 0.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0s ease-in-out;
}

.faq-answer.active {
    max-height: 200px; /* Adjust as needed for content */
    transition: max-height 0s ease-in-out;
}

/* Footer */
.footer {
    background-color: #0F0F1A;
    color: #A0A0A0;
    padding-top: 4rem;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-bottom: 3rem;
}

.footer-col h3 {
    font-size: 1.3rem;
    color: #E0E0E0;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-link {
    color: #A0A0A0;
    text-decoration: none;
    transition: color 0s;
}

.footer-link:hover {
    color: #00ADB5;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #00ADB5;
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
}

.footer-tagline {
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.footer-cta {
    background-color: #00ADB5;
    color: #FFFFFF;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0s;
    width: auto;
    display: inline-block;
    white-space: normal;
    word-break: break-word;
}

.footer-cta:hover {
    background-color: #007B80;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 173, 181, 0.2);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: #777777;
}

/* Responsive Design */

/* Desktop (>= 1024px) */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
    .section-title {
        font-size: 2.5rem;
    }
    .logo {
        font-size: 2rem;
    }
    .nav-link, .cta-button-nav {
        font-size: 1rem;
    }
    .module-text h3 {
        font-size: 2rem;
    }
    .slide-content h3 {
        font-size: 2.5rem;
    }
    .team-member-card h3 {
        font-size: 1.8rem;
    }
    .faq-question {
        font-size: 1.3rem;
    }
    .footer-logo {
        font-size: 2.2rem;
    }
    .footer-col h3 {
        font-size: 1.5rem;
    }
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-title {
        font-size: 3rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .logo {
        font-size: 1.8rem;
    }
    .nav-menu {
        gap: 1rem;
    }
    .nav-link, .cta-button-nav {
        font-size: 0.95rem;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .timeline::after {
        left: 1rem;
    }
    .timeline-item {
        width: 100%;
        padding-left: 3rem;
        padding-right: 10px;
        text-align: left;
    }
    .timeline-item.right {
        left: 0;
    }
    .timeline-item.left .timeline-marker, .timeline-item.right .timeline-marker {
        left: 0;
        top: 20px;
        margin-left: -13px;
    }
    .module-item {
        flex-direction: column;
        text-align: center;
    }
    .module-item.reverse {
        flex-direction: column;
    }
    .module-graphic {
        margin-top: 1.5rem;
    }
    .slide-content h3 {
        font-size: 2rem;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-col.logo-col {
        grid-column: span 2;
        text-align: center;
    }
    .footer-logo {
        font-size: 2rem;
    }
    .footer-tagline {
        max-width: 70%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Mobile (< 768px) */
@media (max-width: 1100px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px; /* Adjust based on header height */
        left: 0;
        width: 100%;
        background-color: #16213E;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        padding: 1rem 0;
        text-align: center;
        gap: 0;
    }

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

    .nav-link {
        padding: 0.8rem 1rem;
        border-bottom: 1px solid rgba(0, 173, 181, 0.2);
    }

    .nav-link:last-of-type {
        border-bottom: none;
    }

    .cta-button-nav {
        margin-top: 1rem;
        padding: 0.8rem 1.5rem;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .burger-menu {
        display: flex;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    .logo {
        font-size: 1.25rem;
    }
    .about-us-content {
        font-size: 1rem;
        text-align: left;
    }
    .module-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    .module-item.reverse {
        flex-direction: column;
    }
    .module-text h3 {
        font-size: 1.5rem;
    }
    .module-text p {
        font-size: 1rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .feature-card {
        padding: 2rem;
        min-height: auto;
    }
    .feature-number {
        font-size: 3rem;
    }
    .feature-card h3 {
        font-size: 1.3rem;
    }
    .timeline::after {
        left: 1rem;
    }
    .timeline-item {
        width: calc(100% - 3rem);
        padding-left: 3rem;
        padding-right: 10px;
        text-align: left;
    }
    .timeline-item.right {
        left: 0;
    }
    .timeline-item.left .timeline-marker, .timeline-item.right .timeline-marker {
        left: 15px;
        top: 20px;
        margin-left: -13px;
    }
    .timeline-content h3 {
        font-size: 1.4rem;
    }
    .timeline-content p {
        font-size: 0.9rem;
    }
    .slide {
        height: 450px;
    }
    .slide-content h3 {
        font-size: 1.8rem;
    }
    .slide-content p {
        font-size: 1rem;
    }
    .slider-control {
        padding: 0.8rem 1rem;
        font-size: 1.2rem;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .team-member-card h3 {
        font-size: 1.5rem;
    }
    .team-role {
        font-size: 0.9rem;
    }
    .team-quote p {
        font-size: 1rem;
    }
    .faq-question {
        font-size: 1.1rem;
    }
    .faq-answer p {
        font-size: 0.9rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col.logo-col {
        grid-column: span 1;
    }
    .footer-logo {
        font-size: 1.8rem;
    }
    .footer-tagline {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    .footer-col ul {
        margin-bottom: 2rem;
    }
    .footer-col:last-child ul {
        margin-bottom: 0;
    }
}/* Base container styles for the privacy zone */
.privacyNestZone {
    padding: 30px 20px; /* Top/bottom and left/right padding */
    max-width: 800px; /* Maximum width for content readability */
    margin: 0 auto; /* Center the container horizontally */
    box-sizing: border-box; /* Include padding in the element's total width and height */
}

/* Heading styles */
.privacyNestZone h1 {
    font-size: 28px; /* Moderate font size for H1 */
    font-weight: 700; /* Bold weight */
    line-height: 1.2; /* Tighter line height for headings */
    margin-top: 24px; /* Space above heading */
    margin-bottom: 16px; /* Space below heading */
}

.privacyNestZone h2 {
    font-size: 24px; /* Moderate font size for H2 */
    font-weight: 700;
    line-height: 1.2;
    margin-top: 22px;
    margin-bottom: 14px;
}

.privacyNestZone h3 {
    font-size: 20px; /* Moderate font size for H3 */
    font-weight: 700;
    line-height: 1.3;
    margin-top: 20px;
    margin-bottom: 12px;
}

.privacyNestZone h4 {
    font-size: 18px; /* Moderate font size for H4 */
    font-weight: 700;
    line-height: 1.4;
    margin-top: 18px;
    margin-bottom: 10px;
}

.privacyNestZone h5 {
    font-size: 16px; /* Moderate font size for H5, often same as body but bold */
    font-weight: 700;
    line-height: 1.5;
    margin-top: 16px;
    margin-bottom: 8px;
}

/* Paragraph styles */
.privacyNestZone p {
    font-size: 16px; /* Standard body font size */
    line-height: 1.6; /* Good line height for readability */
    margin-top: 0; /* Reset default top margin */
    margin-bottom: 1em; /* Space between paragraphs */
}

/* Unordered list styles */
.privacyNestZone ul {
    list-style-type: disc; /* Default bullet style */
    margin-top: 1em; /* Space above the list */
    margin-bottom: 1em; /* Space below the list */
    padding-left: 25px; /* Indentation for bullets */
    font-size: 16px; /* Ensure list text matches paragraph size */
    line-height: 1.6; /* Consistent line height */
}

/* List item styles */
.privacyNestZone li {
    margin-bottom: 8px; /* Space between list items */
}

/* Remove bottom margin from the last paragraph/list item to prevent excessive space */
.privacyNestZone p:last-child,
.privacyNestZone ul:last-child,
.privacyNestZone li:last-child {
    margin-bottom: 0;
}


@media (max-width: 767px){
    .slider-control.next{
        top: 80%;
        transform: translateY(0);
    }

    .slider-control.prev{
        top: 80%;
        transform: translateY(0);
    }
}