body {
    font-family: 'Inter', sans-serif;
    background-color: #1a1a2e;
    color: #e0e0e0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #ffffff;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #ffffff;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #8a2be2; /* Violet */
    border-radius: 5px;
}

.small-text {
    font-size: 0.9rem;
    color: #c0c0c0;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

.bg-light-dark {
    background-color: #2a2a4a;
}

.bg-dark-gradient {
    background: linear-gradient(135deg, #1a1a2e 0%, #2a2a4a 100%);
}

/* Navbar */
.navbar {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar-brand .site-logo {
    height: 40px;
    width: auto;
}

.navbar-brand .site-name {
    font-size: clamp(1.25rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #ffffff;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 600;
    margin-right: 15px;
    position: relative;
    padding-bottom: 5px;
}

.navbar-nav .nav-link:hover {
    color: #a0a0ff !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #a0a0ff;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.offcanvas-header .btn-close-white {
    filter: invert(1);
}

/* Sticky Navbar on Scroll */
.navbar.scrolled {
    background-color: rgba(42, 42, 74, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero-section {
    background-image: url('static/content/investment-background_3.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px; /* Space for fixed navbar */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(26, 26, 46, 0.7) 0%, rgba(138, 43, 226, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 15px;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    opacity: 0.9;
}

.btn-cta {
    background: linear-gradient(90deg, #8a2be2 0%, #ff69b4 100%); /* Violet to Pink */
    border: none;
    color: white;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-cta:hover {
    background: linear-gradient(90deg, #9932cc 0%, #ff1493 100%); /* Darker shades on hover */
    color: white;
}

/* About Us / Milestones */
.about-us-section {
    background-color: #1a1a2e;
}

.timeline-item {
    position: relative;
    background-color: #2a2a4a;
    border-left: 3px solid #8a2be2;
    padding-left: 25px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #e0e0e0;
}

.timeline-item .timeline-number {
    position: absolute;
    left: -15px;
    top: 20px;
    background-color: #8a2be2;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.timeline-item h3 {
    color: #ffffff;
}

/* Our Services */
.our-services-section {
    background-color: #2a2a4a;
}

.service-card {
    background-color: #1a1a2e;
    border: 1px solid rgba(138, 43, 226, 0.3);
    color: #e0e0e0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    background-color: #3a3a5a;
    border-color: #8a2be2;
    cursor: default;
}

.service-card .service-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-left: auto;
    margin-right: auto;
}

.service-card h3 {
    color: #ffffff;
}

/* Key Features */
.key-features-section {
    background-color: #1a1a2e;
}

.feature-callout {
    width: 35px;
    height: 35px;
    font-weight: 700;
    font-size: 0.9rem;
    background-color: #8a2be2 !important;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.feature-callout-1 {
    top: 15%;
    left: 10%;
}

.feature-callout-2 {
    top: 35%;
    left: 70%;
}

.feature-callout-3 {
    top: 55%;
    left: 20%;
}

.feature-callout-4 {
    top: 75%;
    left: 80%;
}

.feature-callout-5 {
    top: 85%;
    left: 40%;
}

.feature-list .feature-number-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8a2be2;
    line-height: 1;
}

.feature-list h3 {
    color: #ffffff;
}

/* How It Works */
.how-it-works-section {
    background-color: #2a2a4a;
}

.process-steps {
    position: relative;
}

.process-step {
    position: relative;
    padding: 20px;
}

.process-icon-circle {
    width: 80px;
    height: 80px;
    background-color: #00bcd4; /* Turquoise */
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 5px rgba(0, 188, 212, 0.3);
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 60px;
    left: calc(50% + 40px);
    width: calc(100% - 80px);
    height: 2px;
    border-bottom: 2px dashed #00bcd4;
    z-index: 1;
}

/* Our Team */
.our-team-section {
    background-color: #1a1a2e;
}

.filter-btn {
    background-color: #2a2a4a;
    color: #e0e0e0;
    border: 1px solid #8a2be2;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.filter-btn:hover, .filter-btn.active {
    background-color: #8a2be2;
    color: white;
    border-color: #8a2be2;
}

.team-card {
    background-color: #2a2a4a;
    border: 1px solid rgba(138, 43, 226, 0.3);
    color: #e0e0e0;
}

.team-card .team-avatar {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 3px solid #8a2be2;
}

.team-card h4 {
    color: #ffffff;
}

.team-card p.text-primary {
    color: #a0a0ff !important;
}

/* Client Testimonials / Testimonial Map */
.testimonials-map-section {
    background-color: #2a2a4a;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
}

.map-container img {
    filter: brightness(0.6) saturate(0.8);
}

.testimonial-point {
    width: 30px;
    height: 30px;
    background-color: #ff69b4; /* Pink */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    box-shadow: 0 0 0 5px rgba(255, 105, 180, 0.3);
    transition: transform 0.2s ease;
}

.testimonial-point:hover {
    transform: scale(1.1);
}

/* Positioning for points on a generic map (adjust as needed for specific map image) */
.point-be {
    top: 30%;
    left: 48%;
}

.point-fr {
    top: 45%;
    left: 45%;
}

.point-de {
    top: 45%;
    left: 55%;
}

.point-nl {
    top: 20%;
    left: 60%;
}

.point-uk {
    top: 20%;
    left: 40%;
}

/* FAQ Section */
.faq-section {
    background-color: #1a1a2e;
}

.faq-bubble {
    background-color: #2a2a4a;
    border: 1px solid rgba(138, 43, 226, 0.3);
    color: #e0e0e0;
}

.faq-bubble .btn-link {
    color: #ffffff;
    font-weight: 600;
    text-align: left;
}

.faq-bubble .btn-link:hover {
    color: #a0a0ff;
}

/* Contact Form */
.contact-form-section {
    background-color: #2a2a4a;
}

.contact-form-section form {
    background-color: #1a1a2e;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.contact-form-section .form-label {
    color: #ffffff;
}

.contact-form-section .form-control {
    background-color: #2a2a4a;
    border: 1px solid #4a4a6a;
    color: #e0e0e0;
}

.contact-form-section .form-control::placeholder {
    color: #a0a0a0;
}

.contact-form-section .form-control:focus {
    background-color: #3a3a5a;
    border-color: #8a2be2;
    box-shadow: 0 0 0 0.25rem rgba(138, 43, 226, 0.25);
    color: #ffffff;
}

.contact-form-section .invalid-feedback {
    color: #ff69b4;
}

/* Footer */
.footer-section {
    background-color: #1a1a2e;
    border-top: 1px solid #2a2a4a;
}

.footer-section .site-logo-footer {
    height: 30px;
    width: auto;
}

.footer-section .site-name-footer {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-section a {
    color: #c0c0c0;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-section .badge {
    font-size: 0.75rem;
}

/* Cookie Banner */
.cookie-banner {
    background-color: #1a1a2e;
    color: white;
    padding: 15px 20px;
    z-index: 1050;
    border-top: 1px solid #2a2a4a;
}

.cookie-banner .btn-primary {
    background-color: #8a2be2;
    border-color: #8a2be2;
    font-weight: 600;
}

.cookie-banner .btn-primary:hover {
    background-color: #9932cc;
    border-color: #9932cc;
}

.cookie-banner .btn-outline-secondary {
    color: #e0e0e0;
    border-color: #4a4a6a;
}

.cookie-banner .btn-outline-secondary:hover {
    background-color: #4a4a6a;
    color: #ffffff;
}

#cookieSettingsModal .modal-content {
    background-color: #1a1a2e;
    border: 1px solid #2a2a4a;
}

#cookieSettingsModal .modal-header {
    border-bottom: none;
}

#cookieSettingsModal .modal-footer {
    border-top: none;
}

#cookieSettingsModal .form-check-input:checked {
    background-color: #8a2be2;
    border-color: #8a2be2;
}

#cookieSettingsModal .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(138, 43, 226, 0.25);
}

/* Responsive Typography */
@media (max-width: 1023px) {
    .navbar-brand .site-name {
        font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    }
    .hero-content h1 {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    .hero-content p {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
    }
    .section-title {
        font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    }
    .h4, .h5 {
        font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    }
}

@media (max-width: 767px) {
    .navbar-brand .site-name {
        font-size: 1.1rem;
    }
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-content p {
        font-size: 0.95rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .h4, .h5 {
        font-size: 1.1rem;
    }
    .hero-section {
        height: auto;
        min-height: 70vh;
        padding-top: 100px; /* Adjust for smaller screens */
        padding-bottom: 50px;
    }
    .timeline-item {
        border-left: none;
        padding-left: 15px;
        border-top: 3px solid #8a2be2;
        padding-top: 25px;
    }
    .timeline-item .timeline-number {
        left: 20px;
        top: -15px;
    }
    .process-step:not(:last-child)::after {
        display: none;
    }
    .process-steps .col-md-4 {
        margin-bottom: 30px;
    }
    .process-steps .col-md-4:last-child {
        margin-bottom: 0;
    }
    .team-card {
        margin-bottom: 20px;
    }
    .map-container {
        padding: 0 15px;
    }
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        text-align: left;
    }
    .cookie-banner .d-flex {
        width: 100%;
        justify-content: space-around;
    }
    .cookie-banner .btn {
        flex-grow: 1;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .process-step:not(:last-child)::after {
        width: calc(100% - 100px);
        left: calc(50% + 50px);
    }
}

/* Offcanvas specific styling for mobile menu */
.offcanvas.show {
    transform: translateX(0);
}

.offcanvas-end {
    width: 250px;
}

.offcanvas-body .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
}

.offcanvas-body .nav-link {
    margin-right: 0;
    padding: 10px 15px;
    width: 100%;
}

.offcanvas-body .nav-link::after {
    display: none;
}
/* Styles for the main privacy content zone */
.privacyNestZone {
    padding-top: 2em; /* Top padding for the content area */
    padding-left: 1.5em; /* Left padding for the content area */
    padding-right: 1.5em; /* Right padding for the content area */
    /* Optional: Add max-width and margin auto for better readability on very wide screens */
    /* max-width: 960px; */
    /* margin-left: auto; */
    /* margin-right: auto; */
}

/* Heading 1 styles - Moderate size */
.privacyNestZone h1 {
    font-size: 2em; /* Relatively large, but not excessive */
    line-height: 1.2; /* Tighter line height for headings */
    margin-top: 1.8em; /* Spacing above the heading */
    margin-bottom: 0.8em; /* Spacing below the heading */
    font-weight: 700; /* Bold text for prominence */
}

/* Heading 2 styles - Moderate size */
.privacyNestZone h2 {
    font-size: 1.6em; /* Slightly smaller than h1 */
    line-height: 1.3;
    margin-top: 1.6em;
    margin-bottom: 0.7em;
    font-weight: 700;
}

/* Heading 3 styles - Moderate size */
.privacyNestZone h3 {
    font-size: 1.3em; /* Standard sub-heading size */
    line-height: 1.4;
    margin-top: 1.4em;
    margin-bottom: 0.6em;
    font-weight: 700;
}

/* Heading 4 styles - Moderate size */
.privacyNestZone h4 {
    font-size: 1.1em; /* Slightly larger than body text */
    line-height: 1.5;
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    font-weight: 700;
}

/* Heading 5 styles - Moderate size */
.privacyNestZone h5 {
    font-size: 1em; /* Same as body text, but bold */
    line-height: 1.5;
    margin-top: 1em;
    margin-bottom: 0.4em;
    font-weight: 700;
}

/* Paragraph styles */
.privacyNestZone p {
    font-size: 1em; /* Base font size for readability */
    line-height: 1.6; /* Good line height for long text blocks */
    margin-bottom: 1em; /* Spacing between paragraphs */
}

/* Unordered list styles */
.privacyNestZone ul {
    list-style-type: disc; /* Default bullet style */
    padding-left: 1.5em; /* Indentation for bullet points */
    margin-top: 1em; /* Spacing above the list */
    margin-bottom: 1em; /* Spacing below the list */
}

/* List item styles */
.privacyNestZone li {
    line-height: 1.6; /* Consistent line height with paragraphs */
    margin-bottom: 0.5em; /* Spacing between individual list items */
}


@media (min-width: 992px) {
  .offcanvas-body .navbar-nav {
    flex-direction: row;
  }
}

section{
    overflow: hidden;
}