:root {
    --primary-red: #c41e3a;
    --primary-blue: #1e3a8a;
    --dark-gray: #2c3e50;
}


#body{
    background-color: #595959;
}
#mainHeader {
    padding:10px;
    font-size: 16px !important;
    background-color: #202020;
    color: #CECECE;
}

#mainHeader a {
    color: #CECECE;
    text-decoration: none;
}

#content-page{
    margin:10px;
}

.nav-item > a {
    color: #3e3e3e !important;
}

.nav-item > a:hover {
    color: darkred !important;
    font-weight: bold;
}

/* Top Social Bar */
.social-bar {
    background-color: #000;
    padding: 8px 0;
    font-size: 14px;
}

.social-bar a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-bar a:hover {
    color: var(--primary-red);
}

/* Header */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-gray) !important;
    margin: 0 5px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-red) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.btn-custom {
    background-color: #fff;
    color: var(--primary-red);
    border: none;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-custom:hover {
    background-color: var(--primary-red);
    color: white;
    transform: translateY(-2px);
}

/* Section Styles */
.section-title {
    color: var(--primary-red);
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}

.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
}

.card-header {
    background-color: var(--primary-red);
    color: white;
    font-weight: bold;
}

.benefits-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.news-card img {
    height: 200px;
    object-fit: cover;
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: white;
    padding: 50px 0 20px;
}

.footer h5 {
    color: #AAAAAA;
    margin-bottom: 20px;
}

.footer a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }
}


@media(max-width:468px){
    .nav-item > a:hover {
        background-color: #01346b;
        color:#efefef !important;
        border-radius: 0px;
        padding:10px;
    }
}
