body {
    font-family: 'Open Sans', sans-serif;
    color: #1a1a1a;
}

.btn-pill {
    border-radius: 50px;
}

/* Specific styling to match the image's feature circles exactly */
.feature-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.section-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #8B0000;
    margin: 10px auto 0;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Sticky Header */
.sticky-header {
    position: sticky !important;
    top: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.nav-link.active {
    color: #8B0000 !important;
    font-weight: 700 !important;
}

/* Mobile menu toggle */
@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
    
    .desktop-menu {
        display: none;
    }
}
