body {
    font-family: 'Montserrat', Arial, sans-serif;
}
.logo img {
    height: 48px;
    vertical-align: middle;
}
.navbar-nav .nav-link {
    color: #000 !important;
    font-weight: 500;
}
.navbar-nav .nav-link:hover {
    color: #d32f2f !important;
}
.btn-red {
    background: #d32f2f;
    color: #fff;
    border: none;
    border-radius: 4px;
}
.btn-red:hover {
    background: #b71c1c;
    color: #fff;
}
.top-bar {
    background: #22232a;
    color: #fff;
    font-size: 0.85rem;
    justify-content: center !important;
    gap: 2rem;
}
.top-bar a {
    color: #fff;
    margin-left: 1rem;
    text-decoration: none;
    font-size: 0.95rem;
}
.top-bar a:hover {
    color: #d32f2f;
}
.top-bar .mobile {
    margin-right: 1.5rem;
}
/* ...existing code... */
.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: #fff;
    color: #22232a !important;
    font-size: 0.8rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, border-color 0.2s;
    border: 1px solid #e5e5e5;
    margin-right: 0.25rem;
    padding: 0;
}
.icon-box:last-child {
    margin-right: 0;
}
.icon-box i {
    line-height: 1;
    font-size: 0.85rem;
}
.icon-box.facebook {
    background: #1877f3;
    color: #fff !important;
    border-color: #1877f3;
}
.icon-box.twitter {
    background: #1da1f2;
    color: #fff !important;
    border-color: #1da1f2;
}
.icon-box.instagram {
    background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #fff !important;
    border: none;
}
.icon-box:hover {
    filter: brightness(0.92);
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    border-color: #d32f2f;
}
.social .icon-box:not(:last-child) {
    margin-right: 0.5rem;
}
.social {
    gap: 0.25rem;
}
.navbar-nav {
    width: 100%;
    justify-content: end;
    gap: 0.5rem;
}
.navbar-nav .nav-link {
    text-align: center;
}
.slider-wrapper {
    width: 99vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
}
.slider-img {
    width: 100vw;
    object-fit: cover;
}
.stats-card {
    border: 1px solid #f3f3f3;
    transition: box-shadow 0.2s, border-color 0.2s;
    background: #fff;
}
.stats-card:hover {
    box-shadow: 0 4px 24px rgba(211,47,47,0.08);
    border-color: #d32f2f;
}
.stats-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f6fa;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}
.stats-icon-simple {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    margin-right: 0.25rem;
}
.stats-box {
    background: #f8f9fa;
    border: 1px solid #ececec;
    border-radius: 12px;
    min-height: 70px;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.stats-box:hover {
    box-shadow: 0 4px 16px rgba(44,62,80,0.07);
    border-color: #d32f2f;
}
.stats-scroll {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}
.stats-scroll > .col-12,
.stats-scroll > .col-sm-6,
.stats-scroll > .col-md-3 {
    min-width: 240px;
    max-width: 300px;
    flex: 0 0 auto;
}
@media (min-width: 768px) {
    .stats-scroll {
        flex-wrap: wrap !important;
        overflow-x: visible;
    }
    .stats-scroll > .col-12,
    .stats-scroll > .col-sm-6,
    .stats-scroll > .col-md-3 {
        min-width: 0;
        max-width: 100%;
        flex: 1 0 0%;
    }
}
section {
    margin-top: 1.5rem;
}
@media (max-width: 767px) {
    .stats-card {
        align-items: center !important;
        text-align: center;
    }
    .stats-icon-simple {
        font-size: 1.3rem;
        margin-right: 0.2rem;
    }
    .fs-5 {
        font-size: 1.1rem;
    }
    section {
        margin-top: 1rem;
    }
}