body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    box-sizing: border-box;
}

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

:root {
    --primary-purple: #8A2BE2; /* Blue Violet */
    --primary-pink: #FF69B4; /* Hot Pink */
    --primary-dark: #4a0072; /* Darker purple for text */
    --primary-light: #e0b0ff; /* Lighter purple for accents */
    --accent-blue-cyan: #40E0D0; /* Turquoise */
    --text-color: #333;
    --bg-light-gray: #f8f9fa;
}

.text-primary-dark {
    color: var(--primary-dark) !important;
}

.text-primary-light {
    color: var(--primary-light) !important;
}

.btn-primary-gradient {
    background: linear-gradient(45deg, var(--primary-purple), var(--primary-pink));
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

.btn-primary-gradient:hover {
    background: linear-gradient(45deg, var(--primary-pink), var(--primary-purple));
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn-outline-primary-dark {
    color: var(--primary-dark);
    border-color: var(--primary-dark);
    transition: all 0.3s ease;
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

.btn-outline-primary-dark:hover {
    background-color: var(--primary-dark);
    color: white;
}

.bg-gradient-pink-magenta {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
}

.bg-light-gradient {
    background: linear-gradient(180deg, #f8f9fa, #e9ecef);
}

.navbar-brand .site-title {
    font-size: 1.3rem;
    color: var(--primary-dark);
}

.navbar-nav .nav-link {
    color: var(--primary-dark) !important;
    font-weight: 600;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-purple) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-image: url('photos/uploads/investment-strategy-background.png');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px; /* Adjust for fixed header */
}

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

.hero-section h1 {
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    font-size: 1.25rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.emoji-highlight {
    font-size: 1.2em;
    vertical-align: middle;
}

/* Section Titles */
.section-title {
    color: var(--primary-dark);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-pink));
    border-radius: 2px;
}

/* About Section */
.progress-bar-container {
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 10px;
}

.progress-bar {
    height: 100%;
    border-radius: 4px;
}

/* Services Section */
.service-card {
    border: 1px solid rgba(255, 255, 255, 0.8);
    background-color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.icon-circle {
    width: 70px;
    height: 70px;
    font-size: 2rem;
    margin: 0 auto 1rem auto;
}

/* FAQ & Industries Section */
.accordion-item {
    border-color: var(--accent-blue-cyan) !important;
    border-width: 1px;
    border-style: solid;
    border-radius: 0.5rem;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: var(--primary-dark);
    background-color: white;
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    color: white;
    background-color: var(--primary-purple);
    border-bottom: 1px solid var(--accent-blue-cyan);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234a0072'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    transition: transform 0.2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    transform: rotate(-180deg);
}

/* Team Section */
.team-carousel {
    max-width: 800px;
}

.team-photo {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 5px solid var(--primary-light);
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: var(--primary-purple);
    border-radius: 50%;
}

.carousel-control-prev, .carousel-control-next {
    width: 5%;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-pink));
}

.stats-section h3 {
    font-size: 3.5rem;
    font-weight: 700;
}

.stats-section p {
    font-size: 1.5rem;
}

/* Contact Form Section */
.contact-form {
    background-color: white;
    border: 1px solid #e9ecef;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--primary-dark);
}

.contact-form .form-control, .contact-form .form-select {
    border-radius: 0.375rem;
    border: 1px solid #ced4da;
    padding: 0.75rem 1rem;
}

.contact-form .form-control:focus, .contact-form .form-select:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.25rem rgba(138, 43, 226, 0.25);
}

/* Footer */
footer {
    background-color: #212529 !important;
}

footer a {
    color: var(--primary-light);
}

footer a:hover {
    color: var(--primary-pink);
}

/* Responsive Typography */
@media (min-width: 1024px) {
    .site-title {
        font-size: 2.2rem;
    }
    .hero-section h1 {
        font-size: 4.5rem;
    }
    .section-title {
        font-size: 2.8rem;
    }
    .stats-section h3 {
        font-size: 4.5rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .site-title {
        font-size: 2rem;
    }
    .hero-section h1 {
        font-size: 3.8rem;
    }
    .hero-section .lead {
        font-size: 1.1rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .stats-section h3 {
        font-size: 3.8rem;
    }
    .accordion-button {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .site-title {
        font-size: 1.25rem;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section .lead {
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .stats-section h3 {
        font-size: 2.5rem;
    }
    .stats-section p {
        font-size: 1.2rem;
    }
    .offcanvas-body {
        text-align: center;
    }
    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 0.75rem 0;
    }
    .hero-section {
        min-height: 80vh;
    }
    .team-photo {
        width: 150px;
        height: 150px;
    }
    .carousel-control-prev, .carousel-control-next {
        width: 10%;
    }
}

.offcanvas-header {
    background-color: var(--primary-purple);
    color: white;
}

.offcanvas-title {
    color: white;
}

.offcanvas-body .nav-link {
    color: var(--primary-dark) !important;
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
}

.offcanvas-body .nav-link:hover, .offcanvas-body .nav-link.active {
    background-color: var(--primary-light);
    border-radius: 0.25rem;
}
/* Parent container styling */
.infoGuardBlock {
    margin-top: 40px; /* Top spacing for the block */
    padding: 20px 10px; /* Internal padding for top/bottom and sides */
    /* You might want to add a max-width for better readability on wide screens */
    /* max-width: 800px; */
    /* margin-left: auto; */
    /* margin-right: auto; */
}

/* Heading styles (moderate sizes) */
.infoGuardBlock h1 {
    font-size: 2.2rem; /* Moderate size for H1 */
    line-height: 1.2;
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    color: #222; /* Darker color for headings */
}

.infoGuardBlock h2 {
    font-size: 1.8rem; /* Moderate size for H2 */
    line-height: 1.25;
    font-weight: 700;
    margin-top: 0em;
    margin-bottom: 0.7em;
    color: #222;
}

.infoGuardBlock h3 {
    font-size: 1.5rem; /* Moderate size for H3 */
    line-height: 1.3;
    font-weight: 600;
    margin-top: 1.3em;
    margin-bottom: 0.6em;
    color: #333;
}

.infoGuardBlock h4 {
    font-size: 1.25rem; /* Moderate size for H4 */
    line-height: 1.4;
    font-weight: 600;
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    color: #333;
}

.infoGuardBlock h5 {
    font-size: 1.1rem; /* Moderate size for H5 */
    line-height: 1.4;
    font-weight: 500;
    margin-top: 1.1em;
    margin-bottom: 0.4em;
    color: #444;
}

/* Paragraph styles */
.infoGuardBlock p {
    font-size: 1rem; /* Base font size for paragraphs */
    line-height: 1.6; /* Good readability */
    margin-bottom: 1em; /* Spacing between paragraphs */
    color: #444; /* Slightly softer black for body text */
}

/* Unordered list styles */
.infoGuardBlock ul {
    list-style-type: disc; /* Default bullet style */
    margin-top: 1em;
    margin-bottom: 1em;
    padding-left: 25px; /* Indentation for bullet points */
    color: #444;
}

/* List item styles */
.infoGuardBlock li {
    font-size: 1rem; /* Consistent with paragraph text */
    line-height: 1.6;
    margin-bottom: 0.5em; /* Spacing between list items */
    color: #444;
}
.contact-detail {
    word-wrap: break-word;
}