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

:root {
    --primary-blue: #2A3B6A;
    --dark-blue: #1A2542;
    --light-gray: #f0f2f5;
    --white: #ffffff;
    --text-dark: #333;
    --text-light: #f8f9fa;
}

/* General Styles */
.navbar {
    background-color: var(--dark-blue);
    transition: background-color 0.3s ease;
}

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

.navbar-brand .site-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 600;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #A0C4FF !important; /* Lighter blue for hover */
}

.custom-btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
}

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

.custom-btn-light {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--primary-blue);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.custom-btn-light:hover {
    background-color: #e2e6ea;
    border-color: #e2e6ea;
    color: var(--primary-blue);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(26, 37, 66, 0.8), rgba(26, 37, 66, 0.8)), url(images/content/ai-hero-background.jpg) no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    padding-top: 100px; /* Adjust for fixed navbar */
    padding-bottom: 50px;
}

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

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

/* About Section */
.about-section, .how-ai-works-section, .ai-investments-section, .blog-section, .contact-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.about-section h2, .services-section h2, .how-ai-works-section h2, .ai-investments-section h2, .blog-section h2, .contact-section h2 {
    color: var(--primary-blue);
}

.about-section p, .how-ai-works-section p, .ai-investments-section p, .blog-section p, .contact-section p {
    color: var(--text-dark);
}

.about-section ul, .how-ai-works-section ul, .ai-investments-section ul {
    list-style-type: disc;
    padding-left: 20px;
    color: var(--text-dark);
    list-style: none;
    padding: 0;
}

.about-section ul li, .how-ai-works-section ul li, .ai-investments-section ul li {
    margin-bottom: 8px;
}

/* Services Section */
.services-section {
    background-color: var(--light-gray);
}

.service-card {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    font-size: 3rem;
    color: var(--primary-blue);
}

.service-card h3 {
    color: var(--primary-blue);
}

/* How AI Works Section */
.how-ai-works-section ul {
    list-style-type: none;
    padding-left: 0;
    list-style: none;
}

.how-ai-works-section ul li {
    position: relative;
    margin-bottom: 10px;
}


/* AI and Investments Section */
.ai-investments-section {
    background-color: var(--light-gray);
}

/* Blog Section */
.blog-post-card {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-post-card img {
    max-height: 200px;
    object-fit: cover;
    width: 100%;
}

.blog-post-card h3 {
    color: var(--primary-blue);
}

/* CTA Block */
.cta-block {
    background: linear-gradient(45deg, var(--primary-blue), var(--dark-blue));
    padding-top: 100px;
    padding-bottom: 100px;
}

.cta-block h2 {
    color: var(--white);
}

.cta-block p.lead {
    color: var(--text-light);
}

/* Contact Section */
.contact-section .form-label {
    font-weight: 600;
    color: var(--primary-blue);
}

.contact-form .form-control {
    border-radius: 5px;
    padding: 10px 15px;
}

.contact-form .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.25rem rgba(42, 59, 106, 0.25);
}

/* Footer */
.footer-section {
    background-color: var(--dark-blue);
    color: var(--text-light);
    padding-top: 40px;
    padding-bottom: 20px;
}

.footer-brand .logo-img {
    height: 30px;
    width: auto;
}

.footer-brand .site-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #A0C4FF;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #A0C4FF;
}

.footer-contact i {
    color: #A0C4FF;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p.lead {
        font-size: 1.1rem;
    }

    .navbar-brand .site-name {
        font-size: 1.4rem;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
    }

    .about-section, .how-ai-works-section, .ai-investments-section, .blog-section, .contact-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .cta-block {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .cta-block h2 {
        font-size: 2.5rem;
    }
}
/*
 * Base styles for policy content wrapper.
 * Provides overall spacing and centers the content.
 */
.policyScopeWrap {
    padding: 2rem 1.5rem; /* Top/bottom padding, left/right padding */
    max-width: 800px;    /* Maximum width for content readability */
    margin: 2rem auto;   /* Top/bottom margin, auto for horizontal centering */
    line-height: 1.6;    /* Default line height for readability */
    color: #333;         /* Default text color */
    font-family: sans-serif; /* A common, readable font family */
}

/*
 * Heading styles for h1.
 * Provides moderate font size and spacing.
 */
.policyScopeWrap h1 {
    font-size: 2.2rem;     /* Relatively moderate font size for h1 */
    margin-top: 2rem;      /* Space above the heading */
    margin-bottom: 1rem;   /* Space below the heading */
    font-weight: 700;      /* Bold font weight */
    line-height: 1.2;      /* Tighter line height for headings */
}

/*
 * Heading styles for h2.
 * Provides moderate font size and spacing.
 */
.policyScopeWrap h2 {
    font-size: 1.8rem;     /* Moderate font size for h2 */
    margin-top: 1.8rem;    /* Space above the heading */
    margin-bottom: 0.9rem; /* Space below the heading */
    font-weight: 600;      /* Slightly less bold than h1 */
    line-height: 1.3;
}

/*
 * Heading styles for h3.
 * Provides moderate font size and spacing.
 */
.policyScopeWrap h3 {
    font-size: 1.5rem;     /* Moderate font size for h3 */
    margin-top: 1.5rem;    /* Space above the heading */
    margin-bottom: 0.8rem; /* Space below the heading */
    font-weight: 600;
    line-height: 1.4;
}

/*
 * Heading styles for h4.
 * Provides moderate font size and spacing.
 */
.policyScopeWrap h4 {
    font-size: 1.25rem;    /* Moderate font size for h4 */
    margin-top: 1.25rem;   /* Space above the heading */
    margin-bottom: 0.7rem; /* Space below the heading */
    font-weight: 500;      /* Standard font weight */
    line-height: 1.5;
}

/*
 * Heading styles for h5.
 * Provides moderate font size and spacing.
 */
.policyScopeWrap h5 {
    font-size: 1.1rem;     /* Moderate font size for h5 */
    margin-top: 1.1rem;    /* Space above the heading */
    margin-bottom: 0.6rem; /* Space below the heading */
    font-weight: 500;
    line-height: 1.5;
}

/*
 * Paragraph styles.
 * Sets base font size and spacing between paragraphs.
 */
.policyScopeWrap p {
    font-size: 1rem;       /* Base font size for body text */
    margin-bottom: 1rem;   /* Space below each paragraph */
}

/*
 * Unordered list styles.
 * Provides default indentation and spacing.
 */
.policyScopeWrap ul {
    list-style-type: disc; /* Default disc bullet points */
    margin-bottom: 1rem;   /* Space below the entire list */
    padding-left: 1.5rem;  /* Indentation for list items */
}

/*
 * Ordered list styles.
 * Provides default indentation and spacing.
 */
.policyScopeWrap ol {
    list-style-type: decimal; /* Default numbered list */
    margin-bottom: 1rem;      /* Space below the entire list */
    padding-left: 1.5rem;     /* Indentation for list items */
}

/*
 * List item styles for both ul and ol.
 * Provides spacing between individual list items.
 */
.policyScopeWrap li {
    margin-bottom: 0.5rem; /* Space between list items */
}

.contact-thank-block{
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    font-size: 20px;
}
