body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    padding-top: 56px;
    /* For fixed navbar */
}

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    color: black !important;
}

.nav-link {
    color: #8d99ae !important;
    margin-left: 1rem;
}

.nav-link.active {
    color: #f4a261 !important;
}

.btn-custom {
    background-color: #f4a261;
    color: black;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
}

.btn-custom:hover {
    background-color: #e76f51;
    color: #fff;
}

.btn-outline-custom {
    color: #2a2e34;
    border-color: #2a2e34;
    border-radius: 20px;
    padding: 10px 20px;
}

.btn-outline-custom:hover {
    background-color: #2a2e34;
    color: #fff;
}

.hero {
    height: 50vh;
    display: flex;
    align-items: center;
    text-align: left;
    padding: 50px 0;
    background-color: #fff;
}

.hero-content {
    max-width: 80%;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    color: #2a2e34;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #8d99ae;
    margin: 20px 0;
}

.hero-img {
    max-width: 50%;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.stats {
    margin-top: 20px;
}

.stat-item {
    display: inline-block;
    margin-right: 20px;
    color: #8d99ae;
}

.badge-custom {
    background-color: #f4a261;
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
}