body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--primary-black);
    text-transform: uppercase;
}

/* Navbar Custom */
.navbar {
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.navbar-brand span {
    font-weight: 800;
    font-size: 24px;
    letter-spacing: 1px;
}

.nav-link {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0 10px;
    color: #555 !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-black) !important;
}

/* Hero Section (Small for Internal Pages) */
.page-header {
    padding: 100px 0 60px 0;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 20px;
}

/* Button Styles */
.btn-black {
    background: var(--primary-black) !important;
    color: white !important;
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 600;
    transition: 0.3s;
    border: none;
}

.btn-black:hover {
    background: #333 !important;
}

/* Utility */
.section-padding {
    padding: 80px 0;
}

.label-top {
    font-weight: 700;
    font-size: 11px;
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

/* Stats Styling */
.stats-wrap {
    background: var(--light-grey);
    padding: 60px 0;
}

.stat-item h2 {
    font-size: 45px;
    margin-bottom: 5px;
}

.stat-item p {
    font-weight: 700;
    color: #888;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Story Section */
.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
    filter: grayscale(100%);
    transition: 0.3s;
}

.story-img:hover {
    filter: grayscale(0%);
}

/* Vision Cards */
.vision-card {
    border: 1px solid var(--border-color);
    padding: 40px;
    background: #fff;
    height: 100%;
}

.vision-card i {
    font-size: 30px;
    margin-bottom: 20px;
}

/* Team Section */
.team-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: #eee;
    margin-bottom: 20px;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.5s ease;
}

.team-member:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Contact Section Reuse */
.contact-section {
    background: var(--light-grey);
    padding: 80px 0;
}

.form-control {
    border-radius: 0;
    border: 1px solid #ccc;
    padding: 12px;
    margin-bottom: 15px;
    background: #fff;
}

.form-control:focus {
    border-color: var(--primary-black);
    box-shadow: none;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .page-header {
        padding: 60px 0;
        text-align: center;
    }

    .section-padding {
        padding: 50px 0;
    }
}