/* CSS Variables: Your Brand Color Palette */
:root {
    --dark-blue: #333A56;
    --light-blue: #52658F;
    --cream: #F7F5E6;
    --light-gray: #E8E8E8;
    --bronze: #CD7F32;

    /* Font Weights */
    /* League Spartan weights */
    --ls-bold: 700;
    --ls-regular: 400;

    /* Open Sans weights */
    --os-bold: 700;
    --os-semi-bold: 600;
    --os-regular: 400;

    /* Global Radius */
    --card-radius: 4px;

    /* Shadows */
    --subtle-shadow: 0 2px 5px rgba(0,0,0,0.05);
    --button-shadow: 0 2px 4px rgba(0,0,0,0.1);
    --button-hover-shadow: 0 4px 8px rgba(0,0,0,0.15);
    --focus-shadow: 0 0 0 2px rgba(82, 101, 143, 0.2);

    /* Light-Blue with opacity */
}

/* Base Styles & Bootstrap Overrides */
body {
    font-family: 'Open Sans', sans-serif;

    /* Default body font */
    line-height: 1.6;
    font-size: 16px;
    color: var(--dark-blue);

    /* Default body text color */
    background-color: var(--light-gray);

    /* Overall background */
    scroll-behavior: smooth;
}

/* Custom Bootstrap Container */
.container-custom {
    max-width: 1000px;
    padding-left: 20px;
    padding-right: 20px;
}

/* Section Backgrounds */
.cream-bg {
    background-color: var(--cream);
}

.light-gray-bg {
    background-color: var(--light-gray);
}

/* Specific color for testimonial section if needed */
.bg-light-gray-custom {
    background-color: var(--light-gray) !important;
}

.bg-dark-blue-custom {
    background-color: var(--dark-blue) !important;
}

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

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

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

/* Section Padding Utilities */
.py-lg-6 {
    padding-top: 80px;
    padding-bottom: 80px;
}

a {
    color: var(--light-blue);
}

@media (max-width: 991.98px) {
    /* Bootstrap's lg breakpoint */
    .py-lg-6 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (max-width: 767.98px) {
    /* Bootstrap's md breakpoint */
    .py-lg-6 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media (max-width: 575.98px) {
    /* Bootstrap's sm breakpoint */
    .py-lg-6 {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

/* Header / Navbar Customization */
#main-navbar {
    background-color: transparent !important;

    /* Start transparent */
    box-shadow: none !important;

    /* No shadow initially */
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
    z-index: 1000 !important;
}

/* Navbar Scrolled State */
#main-navbar.navbar-scrolled, #main-navbar.no-hero {
    background-color: var(--dark-blue) !important;

    /* Solid background on scroll */
    box-shadow: var(--subtle-shadow) !important;

    /* Add shadow on scroll */
    position: fixed !important;

    /* Keep it fixed at the top */
    top: 0;
    left: 0;
    right: 0;
}

.navbar-brand .header-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    border-radius: var(--card-radius);

    /* For transparent navbar, ensure logo contrasts well with hero image */
    background-color: transparent;

    /* Assuming logo itself has its own background or is transparent */
}

.logo-text {
    font-family: 'League Spartan', sans-serif;
    font-weight: var(--ls-bold);
    font-size: 1.5em;
    color: var(--cream);

    /* Ensure text is light for transparent background */
    text-decoration: none;
    line-height: 1;
    transition: color 0.4s ease;

    /* Smooth transition for color if needed */
}

.navbar-nav .nav-link {
    font-family: 'League Spartan', sans-serif;
    font-weight: var(--ls-bold);
    color: var(--cream);
    padding: 8px 15px;
    margin-left: 0.5rem;
    transition: color 0.3s ease, background-color 0.3s ease;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--bronze);
}

.navbar-toggler {
    border-color: rgba(247, 245, 230, 0.4);

    /* Light border for toggler */
}

.navbar-toggler-icon {
    background-image: url('data:image/svg+xml;charset=utf8,<svg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"><path stroke="rgba(247, 245, 230, 0.9)" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" d="M4 7h22M4 15h22M4 23h22"/></svg>');
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 650px;

    /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--cream);

    /* Replace with your actual hero image */
    /* background: url('/img/hero.jpg'); */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(51, 58, 86, 0.9);

    /* Dark blue overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;

    /* Limit content width */
    padding: 20px;
}

.hero-content .ls-heading-h1 {
    font-size: 3.5em;

    /* Larger heading */
    color: var(--cream);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content .sub-headline {
    font-size: 1.5em;
    font-weight: var(--os-regular);
    color: rgba(255, 255, 255, 0.9);

    /* Slightly transparent white */
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-buttons .btn {
    min-width: 220px;

    /* Ensure buttons have a minimum width */
}

/* --- Section Headers (General) --- */
/* All headings now use League Spartan */
.ls-heading-h1 {
    font-family: 'League Spartan', sans-serif;
    font-weight: var(--ls-bold);
    font-size: 2.8em;
    color: var(--dark-blue);
    line-height: 1.2;
    margin-bottom: 15px;
}

.ls-heading-h2 {
    font-family: 'League Spartan', sans-serif;
    font-weight: var(--ls-bold);
    font-size: 2.2em;
    color: var(--dark-blue);
    line-height: 1.3;
    margin-bottom: 15px;
}

.ls-heading-h3 {
    font-family: 'League Spartan', sans-serif;
    font-weight: var(--ls-bold);
    font-size: 1.8em;
    color: var(--dark-blue);
    line-height: 1.4;
    margin-bottom: 10px;
}

.ls-heading-h4 {
    font-family: 'League Spartan', sans-serif;
    font-weight: var(--ls-bold);
    font-size: 1.3em;
    color: var(--dark-blue);
    line-height: 1.4;
    margin-bottom: 5px;
}

.os-body-p {
    font-family: 'Open Sans', sans-serif;
    font-weight: var(--os-regular);
    font-size: 1.1em;
    line-height: 1.7;
    color: var(--dark-blue);
    margin-bottom: 1em;
}

.os-body-bold {
    font-family: 'Open Sans', sans-serif;
    font-weight: var(--os-bold);
    color: var(--dark-blue);
}

.section-intro {
    font-size: 1.2em;
    color: var(--light-blue);
    margin-top: 10px;
    margin-bottom: 30px;
}

/* --- Value Props Zone --- */
.value-prop-card {
    border: none;
    border-radius: var(--card-radius);
    box-shadow: var(--subtle-shadow);
    background-color: #FFFFFF;
    overflow: hidden;

    /* Ensures rounded corners are respected */
}

.value-prop-card .card-header {
    background-color: var(--light-blue);
    color: var(--cream);
    padding: 30px;
    border-bottom: 1px solid var(--light-gray);
}

.value-prop-card .card-header i {
    color: white;

    /* Icon color */
}

.value-prop-card .card-header h3 {
    font-family: 'League Spartan', sans-serif;
    color: white;
    margin-bottom: 0;
    font-size: 1.8em;

    /* Match ls-heading-h3 */
    font-weight: var(--ls-bold);
}

.value-prop-card .card-body {
    display: flex;
    flex-direction: column;
    padding: 25px;
}

.value-prop-card .content-item {
    margin-bottom: 20px;
    text-align: left;
}

.value-prop-card .content-item:last-child {
    margin-bottom: 0;
}

.value-prop-card .content-item h4 {
    font-family: 'League Spartan', sans-serif;
    color: var(--light-blue);

    /* Content item headings */
    font-size: 1.3em;
    font-weight: var(--ls-bold);
}

.value-prop-card .card-footer {
    background-color: #FFFFFF;
    border-top: none;

    /* Remove default Bootstrap footer border */
    padding: 5px 30px 30px;
}

/* --- Testimonials Section --- */
.testimonials-section {
    background-color: var(--cream) !important;
}

.testimonials-slider {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-item {
    padding: 30px;
    background-color: var(--cream);
    border-radius: var(--card-radius);
    box-shadow: var(--subtle-shadow);
}

.testimonial-item p {
    font-style: italic;
    font-size: 1.1em;
    color: var(--dark-blue);
}

.testimonial-item cite {
    display: block;
    font-size: 0.95em;
    color: var(--light-blue);
    margin-top: 15px;
}

/* Carousel Indicators (dots) positioning fix */
/* Overriding Bootstrap's default position for more space */
.carousel-indicators {
    position: relative !important;

    /* Change from absolute to relative */
    bottom: auto !important;

    /* Remove bottom positioning */
    left: auto !important;

    /* Remove left positioning */
    right: auto !important;

    /* Remove right positioning */
    margin-top: 40px !important;

    /* More space above the dots */
    margin-left: 0 !important;

    /* Remove default Bootstrap margin-left */
    margin-right: 0 !important;

    /* Remove default Bootstrap margin-right */
    padding: 0;

    /* Remove default padding */
}

.carousel-indicators [data-bs-target] {
    background-color: var(--light-blue);

    /* Default dot color */
    height: 10px;
    width: 10px;
    border-radius: 50%;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    margin: 0 5px;

    /* Space between dots */
}

.carousel-indicators .active {
    background-color: var(--dark-blue);

    /* Active dot color */
    opacity: 1;
}

/* --- About Snippet Section --- */
.about-snippet-section h2 {
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.about-snippet-section .about-text {
    font-size: 1.2em;
    color: var(--dark-blue);
}

/* --- CTA Section --- */
.final-cta h2 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.final-cta p {
    color: var(--dark-blue);
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--dark-blue);
    color: var(--light-gray);
    font-size: 0.9em;
}

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

.main-footer a:hover {
    color: var(--bronze);
}

.footer-nav a {
    padding: 0 5px;

    /* Adjust spacing for pipe separator */
}

.footer-nav span {
    color: var(--cream);
    margin: 0 5px;
}

.social-icons a {
    font-size: 1.5em;

    /* Larger icons */
}

.social-icons a:hover {
    color: var(--bronze);
}

/* --- Custom Buttons (Overrides for primary, secondary, accent, default) --- */
.btn {
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: var(--ls-bold);
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: var(--button-shadow);
    border: 1px solid transparent;
    letter-spacing: 0.1px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--button-hover-shadow);
}

.btn:focus {
    box-shadow: var(--focus-shadow) !important;
}

.btn-primary-custom {
    background-color: var(--dark-blue) !important;
    border-color: var(--dark-blue) !important;
    color: var(--cream) !important;
}

.btn-primary-custom:hover {
    background-color: #2a3047 !important;
    border-color: #2a3047 !important;
    color: white !important;
}

.btn-secondary-custom {
    background-color: var(--light-blue) !important;
    border-color: var(--light-blue) !important;
    color: white !important;
}

.btn-secondary-custom:hover {
    background-color: #465a7d !important;
    border-color: #465a7d !important;
    color: var(--cream) !important;
}

.btn-accent-custom {
    background-color: var(--bronze) !important;
    border-color: var(--bronze) !important;
    color: var(--cream) !important;
}

.btn-accent-custom:hover {
    background-color: #e09a45 !important;
    border-color: #e09a45 !important;
    color: var(--cream) !important;
}

.btn-default-custom {
    background-color: #FFFFFF !important;
    border-color: var(--light-blue) !important;
    color: var(--dark-blue) !important;
}

.btn-default-custom:hover {
    background-color: var(--light-gray) !important;
    border-color: var(--light-blue) !important;
    color: var(--dark-blue) !important;
}

.btn-cream-custom {
    background-color: var(--cream) !important;
    border-color: var(--cream) !important;
    color: var(--dark-blue) !important;
}

.btn-cream-custom:hover {
    background-color: hsl(53, 48%, 87%) !important;
    border-color: hsl(53, 48%, 87%) !important;
    color: var(--dark-blue) !important;
}

.btn-light-gray-custom {
    background-color: var(--light-gray) !important;
    border-color: var(--light-gray) !important;
    color: var(--dark-blue) !important;
}

.btn-light-gray-custom:hover {
    background-color: hsl(0, 0%, 85%) !important;
    border-color: hsl(0, 0%, 85%) !important;
    color: var(--dark-blue) !important;
}

/* Small button variant for cards */
.btn.btn-sm {
    padding: 10px 20px;
    font-size: 0.9em;
    font-weight: var(--ls-regular);
}

/* --- Responsive Adjustments --- */
@media (max-width: 1200px) {
    /* Bootstrap's xl breakpoint */
    .hero-content .ls-heading-h1 {
        font-size: 3em;
    }

    .hero-content .sub-headline {
        font-size: 1.3em;
    }
}

@media (max-width: 991.98px) {
    /* Bootstrap's lg breakpoint */
    /* Navbar becomes solid for mobile menu */
    #main-navbar {
        background-color: var(--dark-blue) !important;
        box-shadow: var(--subtle-shadow) !important;
        position: sticky !important;

        /* Changes to sticky to stay at top when opened */
    }

    .navbar-collapse {
        background-color: var(--dark-blue);
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 10px;
    }

    .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    .navbar-nav .nav-link {
        padding: 12px 20px;
    }

    .ls-heading-h1 {
        font-size: 2.5em;
    }

    .ls-heading-h2 {
        font-size: 1.9em;
    }

    .ls-heading-h3 {
        font-size: 1.6em;
    }

    .ls-heading-h4 {
        font-size: 1.2em;
    }

    .os-body-p {
        font-size: 1em;
    }

    .hero-section {
        height: 500px;
    }

    .hero-content .ls-heading-h1 {
        font-size: 2.8em;
    }

    .hero-content .sub-headline {
        font-size: 1.2em;
    }

    .btn.btn-lg {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 767.98px) {
    /* Bootstrap's md breakpoint */
    .hero-section {
        height: 450px;
    }

    .hero-content .ls-heading-h1 {
        font-size: 2.2em;
    }

    .hero-content .sub-headline {
        font-size: 1.1em;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;

        /* Space between stacked buttons */
    }

    .hero-buttons .btn {
        min-width: 250px;

        /* Ensure they are wide enough when stacked */
        margin-right: 0 !important;

        /* Override me-3 */
    }

    .value-prop-card .card-header,
    .value-prop-card .card-body,
    .value-prop-card .card-footer {
        padding: 25px;

        /* Slightly less padding on smaller screens */
    }

    .process-step {
        width: 100%;

        /* Full width for process steps */
        max-width: none;
        margin-bottom: 20px !important;

        /* Ensure margin bottom on stacked cards */
    }

    .process-flow-grid .col-12 {
        margin-bottom: 15px !important;
    }

    .carousel-indicators {
        margin-top: 30px !important;

        /* Adjust for smaller screens */
    }
}

@media (max-width: 575.98px) {
    /* Bootstrap's sm breakpoint */
    .logo-text {
        font-size: 1.3em;
    }

    .hero-section {
        height: 400px;
    }

    .hero-content .ls-heading-h1 {
        font-size: 1.8em;
    }

    .hero-content .sub-headline {
        font-size: 1em;
    }

    .hero-buttons .btn {
        min-width: unset;

        /* Allow buttons to shrink */
        width: 100%;
        padding: 10px 15px;
        font-size: 0.9em;
    }

    .ls-heading-h2 {
        font-size: 1.6em;
    }

    .ls-heading-h3 {
        font-size: 1.4em;
    }

    .ls-heading-h4 {
        font-size: 1.1em;
    }

    .os-body-p {
        font-size: 0.95em;
    }

    .section-intro {
        font-size: 1em;
    }

    .value-prop-card .card-header h3 {
        font-size: 1.6em;
    }

    .value-prop-card .content-item h4 {
        font-size: 1.1em;
    }

    .testimonial-item {
        padding: 20px;
    }

    .testimonial-item p {
        font-size: 1em;
    }

    .testimonial-item cite {
        font-size: 0.85em;
    }

    .footer-nav {
        flex-direction: column;
        align-items: center;
    }

    .footer-nav span {
        display: none;

        /* Hide pipes when stacked */
    }

    .footer-nav a {
        padding: 5px 0;
    }
}

/* Add these new rules to your existing /css/style.css file */
/* --- Value Props Zone (Add to existing section) --- */
.value-prop-card .card-body .content-item i {
    color: var(--dark-blue);
    padding-top: 2px;
    padding-right: 3px;
    font-size: 1.2em;
}

/* Removed old ul/li styling, using d-flex for checkmarks */
/* --- Process Flow Grid (Add to existing section) --- */
.process-flow-grid {
    margin-top: 40px;

    /* Space above process section */
}

.process-step {
    background-color: #FFFFFF;
    border: none;
    border-radius: var(--card-radius);
    box-shadow: var(--subtle-shadow);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;

    /* Removed max-width here, let Bootstrap grid handle it */
}

.process-step h4 {
    font-family: 'League Spartan', sans-serif;
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-size: 1.5em;
    font-weight: var(--ls-bold);
}

.process-step p {
    font-size: 1em;
    line-height: 1.6;
    color: var(--dark-blue);
}

/* --- Investment Focus Section (New Section) --- */
.focus-section {
    background-color: var(--cream);

    /* Default background, can be overridden */
}

.focus-item {
    background-color: #FFFFFF;
    border-radius: var(--card-radius);
    box-shadow: var(--subtle-shadow);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;

    /* Ensure cards are same height in a row */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.focus-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--button-hover-shadow);
}

.focus-item i {
    color: var(--bronze);

    /* Icon color for focus items */
    margin-bottom: 15px;
}

.focus-item h3 {
    font-family: 'League Spartan', sans-serif;
    font-weight: var(--ls-bold);
    font-size: 1.6em;
    color: var(--light-blue);
    margin-bottom: 10px;
}

.focus-item p {
    font-family: 'Open Sans', sans-serif;
    font-weight: var(--os-regular);
    font-size: 1em;
    line-height: 1.6;
    color: var(--dark-blue);
}

/* --- About Snippet Section (Add to existing section) --- */
.team-snippet-photo img {
    max-width: 100%;
    height: auto;
    border-radius: var(--card-radius);
    box-shadow: var(--subtle-shadow);
}

/* --- CTA Section (Add to existing section) --- */
.final-cta h2.text-cream,
.final-cta p.text-cream {
    color: var(--cream) !important;
}

.cta-buttons {
    margin-top: 30px;
}

/* --- Contact Section (New Section) --- */
/* Add these new rules and modify existing ones in your /css/style.css file */
/* --- Card Widths (Updates to existing elements) --- */
/* Value Prop Cards */
/* These were already handled by col-lg-4 col-md-6 col-sm-10 in HTML for wider appearance */
/* Process Step Cards */
/* These were already handled by col-lg-3 col-md-5 col-sm-8 in HTML for wider appearance */
/* Investment Focus Cards */
/* These were already handled by col-lg-4 col-md-6 col-sm-10 in HTML for wider appearance */
/* --- Contact Section (Updates and new styles) --- */
/* Add these new rules and modify existing ones in your /css/style.css file */
/* --- Contact Section (Updates and new styles) --- */
.contact-section {
    background-color: var(--light-gray);

    /* Background for the whole section */
    padding-top: 80px;
    padding-bottom: 80px;
}

.contact-section .contact-form-wrapper {
    /* This wrapper now takes the card-like styling */
    background-color: #FFFFFF;
    border: none;
    border-radius: var(--card-radius);
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

/* Contact Info Column */
.contact-info {
    padding-right: 15px;

    /* Adds a bit of space to the right of info */
}

.contact-info h3 {
    font-family: 'League Spartan', sans-serif;

    /* Consistent font family for headings */
    font-weight: var(--ls-regular);

    /* Consistent weight for tertiary headings */
    font-size: 1.8em;

    /* Consistent size for tertiary headings */
    color: var(--dark-blue);

    /* Consistent with other headings */
    margin-bottom: 1.5rem;

    /* More space below heading */
}

.contact-info p {
    font-family: 'Open Sans', sans-serif;

    /* Consistent font family for body text */
    font-size: 1.1em;

    /* Consistent size for body text */
    color: var(--dark-blue);

    /* Consistent with body text */
    margin-bottom: 15px;
    line-height: 1.6;

    /* Consistent with body text */
}

.contact-info p i {
    color: var(--bronze);

    /* Changed icon color to bronze for brand consistency */
    margin-right: 10px;
}

.contact-info a {
    color: var(--dark-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--bronze);

    /* Consistent hover color */
}

.contact-section .social-icons a {
    color: var(--light-blue);

    /* Default social icon color, consistent with brand */
    transition: color 0.3s ease;
}

.contact-section .social-icons a:hover {
    color: var(--bronze);

    /* Hover color for social icons, consistent with brand */
}

/* Contact Form Specific Styles (Revised to match brand guide) */
.contact-form-styled {
    /* New class for the form itself */
    padding-left: 15px;

    /* Adds a bit of space to the left of form */
}

.contact-form-styled h3 {
    font-family: 'League Spartan', sans-serif;

    /* Consistent font family for headings */
    font-weight: var(--ls-regular);

    /* Consistent weight for tertiary headings */
    font-size: 1.8em;

    /* Consistent size for tertiary headings */
    color: var(--dark-blue);

    /* Consistent with other headings */
    margin-bottom: 1.5rem;
}

.contact-form-styled .form-label {
    font-family: 'Open Sans', sans-serif;
    font-weight: var(--os-regular);

    /* Labels typically regular for readability */
    color: var(--dark-blue);
    margin-bottom: .5rem;

    /* Space between label and input */
    display: block;

    /* Ensures label takes full width */
    font-size: 1.1em;

    /* Consistent with os-body-p */
}

.contact-form-styled .form-checkbox {
    width: 18px;

    /* Make it a bit bigger */
    height: 18px;

    /* Make it a bit bigger */
    vertical-align: middle;

    /* Align with text */
    margin-right: 8px;

    /* Space between checkbox and label */
    margin-left: 4px;

    /* Some browsers might support background-color, but it's not consistent */
    accent-color: var(--bronze);
    border-radius: 0;
}

.contact-form-styled .form-control,
.contact-form-styled .form-select {
    border: none;

    /* Remove default Bootstrap border */
    border-bottom: 2px solid var(--light-gray);

    /* Subtle bottom border, more in line with clean design */
    border-radius: 0;

    /* No border radius, as per style guide's emphasis */
    padding: 0.75rem 0.5rem;

    /* Padding inside fields */
    font-size: 1.1em;

    /* Consistent with os-body-p */
    color: var(--dark-blue);
    background-color: transparent;

    /* Make background transparent to show underlying light-gray if any */
    box-shadow: none;

    /* Remove all shadows */
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.contact-form-styled .form-control:focus,
.contact-form-styled .form-select:focus {
    border-color: var(--bronze);

    /* Bronze on focus, consistent with CTA hover */
    box-shadow: none;

    /* No shadow on focus */
    outline: none;

    /* Remove outline */
    background-color: rgba(var(--light-blue-rgb), 0.05);

    /* Very subtle light-blue tint on focus for clarity */
}

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

    /* Ensures textarea has a decent initial height, slightly more */
    resize: vertical;

    /* Allow vertical resizing, but not horizontal */
    border: 1px solid var(--light-gray);

    /* Full border for textarea as it's a larger input area */
}

.contact-form-styled textarea.form-control:focus {
    border-color: var(--bronze);

    /* Bronze border for textarea on focus */
}

.contact-form-styled .btn-primary-custom {
    display: inline-block;

    /* Ensure it behaves like other CTA buttons */
    background-color: var(--bronze);

    /* Consistent button background */
    color: var(--cream);

    /* Consistent button text color */
    padding: 15px 30px;

    /* Consistent button padding */
    margin-top: 20px;

    /* Consistent margin-top */
    border-radius: 4px;

    /* Consistent button border radius */
    text-decoration: none;
    font-weight: var(--ls-bold);

    /* Consistent font weight for CTA */
    font-size: 1.1em;

    /* Consistent font size for CTA */
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);

    /* Consistent button shadow */
    border: none;

    /* Ensure no extra border from Bootstrap */
    width: auto !important;

    /* Override w-100 to allow it to be inline-block */
    max-width: 300px;

    /* Limit max width for aesthetic */
}

.contact-form-styled .btn-primary-custom:hover {
    background-color: #e09a45;

    /* Slightly lighter bronze on hover */
    transform: translateY(-3px);

    /* Lift effect on hover */
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);

    /* Enhanced shadow on hover */
}

.policy-warning {
    font-size: 0.9em !important;
}

/* Adjustments for smaller screens */
@media (max-width: 991.98px) {
    /* Tablet and smaller */
    .contact-info {
        padding-right: 0;

        /* Remove horizontal padding on smaller screens */
        margin-bottom: 3rem;

        /* Add more vertical space between stacked info and form */
    }

    .contact-form-styled {
        padding-left: 0;

        /* Remove horizontal padding on smaller screens */
    }
}

/* #### Potentially unused and could delete? #### */
/* Process Flow Grid */
.process-heading {
    margin-top: 60px;

    /* Space above process section */
    margin-bottom: 30px;
}

.process-step {
    background-color: #FFFFFF;
    border: none;
    border-radius: var(--card-radius);
    box-shadow: var(--subtle-shadow);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    max-width: 480px;

    /* Limit width of process cards */
}

.process-step h4 {
    font-family: 'League Spartan', sans-serif;
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-size: 1.5em;
    font-weight: var(--ls-bold);
}

.process-step p {
    font-size: 1em;
    line-height: 1.6;
    color: var(--dark-blue);
}


.email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.email-form .error-message br + br {
  margin-top: 25px;
}

.email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}