/* Custom Styles for Leadership Profile */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700&family=Open+Sans:wght@300;400;600&display=swap');

body {
    font-family: 'Open Sans', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Merriweather', serif;
}

.bg-primary-custom {
    background-color: #0b2545 !important; /* Deep navy blue for trust */
}

.text-accent {
    color: #d4af37 !important; /* Elegant gold */
}

.hero-section {
    background: linear-gradient(rgba(11, 37, 69, 0.85), rgba(11, 37, 69, 0.85)), url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover;
    color: white;
    padding: 100px 0;
}

.profile-card img {
    height: 300px;
    object-fit: cover;
    object-position: top;
}

.legal-box {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.optin-box {
    background-color: #e9ecef;
    border-left: 4px solid #0b2545;
    padding: 15px;
    border-radius: 4px;
}

footer {
    background-color: #0b2545;
    color: #ffffff;
    margin-top: auto;
}

footer a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #d4af37;
}