/* --- Variables matching your screenshot --- */
:root {
    --bd-primary-color: #0A1D3A; /* Deep Navy Blue */
    --bd-text-dark: #2C3E50;
    --bd-text-light: #6C7A87;
    --bd-bg-light: #F4F6F9; /* Very light grey/blue background */
    --bd-white: #FFFFFF;
    --bd-accent: #E74C3C; /* Optional accent for hover states */
}

/* --- General Layout --- */
body {
    margin: 0;
    font-family: 'Montserrat', 'Open Sans', sans-serif;
    background-color: var(--bd-bg-light);
    color: var(--bd-text-dark);
    position: relative;
    overflow-x: hidden;
}

.bd-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Particle Canvas --- */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Stays behind all content */
    pointer-events: none;
}

/* --- Hero Section --- */
.bd-hero {
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
}

.bd-icon-wrapper {
    font-size: 3rem;
    color: var(--bd-primary-color);
    margin-bottom: 20px;
}

.bd-title {
    font-size: 2.5rem;
    color: var(--bd-primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.bd-subtitle {
    font-size: 1.1rem;
    color: var(--bd-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Content & Image Section --- */
.bd-content-section {
    padding: 60px 0;
}

.bd-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.bd-text-content h2 {
    color: var(--bd-primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.bd-text-content p {
    color: var(--bd-text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.bd-text-content h3 {
    color: var(--bd-primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.bd-feature-list {
    list-style: none;
    padding: 0;
}

.bd-feature-list li {
    margin-bottom: 15px;
    color: var(--bd-text-light);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.bd-feature-list li i {
    color: var(--bd-primary-color);
    margin-top: 5px;
    font-size: 0.9rem;
}

.bd-feature-list strong {
    color: var(--bd-text-dark);
}

.bd-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(10, 29, 58, 0.1);
    transition: transform 0.3s ease;
}

.bd-image-wrapper img:hover {
    transform: translateY(-5px);
}

/* --- Related Businesses Section --- */
.bd-related-section {
    padding: 60px 0 100px;
    background-color: transparent;
}

.bd-section-title {
    text-align: center;
    color: var(--bd-primary-color);
    font-size: 2rem;
    margin-bottom: 40px;
}

.bd-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bd-related-card {
    background: var(--bd-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.bd-related-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(10, 29, 58, 0.08);
}

.bd-related-card i {
    font-size: 2.5rem;
    color: var(--bd-primary-color);
    margin-bottom: 20px;
}

.bd-related-card h4 {
    color: var(--bd-primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.bd-related-card p {
    color: var(--bd-text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    .bd-grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .bd-image-content {
        order: -1; /* Moves image above text on mobile */
    }
}

@media (max-width: 768px) {
    .bd-related-grid {
        grid-template-columns: 1fr;
    }
    
    .bd-title {
        font-size: 2rem;
    }
}