body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background: #000000;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 1.5rem;
}


nav {
    display: flex;
    justify-content: center;
    background: #d50032;
    padding: 10px;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.1rem;
    padding: 8px 12px;
}

nav a:hover {
    background: white;
    color: #d50032;
    border-radius: 4px;
}

.container {
    width: 80%;
    margin: 30px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color: #333;
}

.search-bar {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.search-bar select,
.search-bar button {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.search-bar button {
    background: #d50032;
    color: white;
    cursor: pointer;
    border: none;
    padding: 10px 15px;
}

.search-bar button:hover {
    background: #A50E26;
}

.resource {
    background: #eef2f7;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 5px solid #C8102E;
    border-radius: 5px;
}

.resource h2 {
    color: #000000;
    font-weight: bold;
}

.resource h3 {
    font-weight: bold;
    color: #444;
}

.resource a {
    color: #d50032;
    font-weight: bold;
    text-decoration: none;
}

.resource a:hover {
    text-decoration: underline;
}

.footer-container {
    background: #3D3D3D;
    color: white;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.footer-section,
.footer-connect,
.footer-logo {
    flex: 1 1 300px;
    margin: 10px;
}

.footer-section h3,
.footer-connect h3 {
    margin-top: 0;

}

.footer-connect a img {
    width: 24px;
    margin-top: 10px;
}

.footer-logo img {
    width: 120px;
    float: right;
}

.footer-links {
    display: flex;
    justify-content: center;
    background: #C8102E;
    padding: 10px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    background: black;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    margin-top: 0;
}

.hidden {
    display: none;
}

header {
    position: relative;
    text-align: center;
    padding: 20px;
}


nav a:hover,
nav .dropdown-menu a:hover {
    background-color: white !important;
    color: #d50032 !important;
}

nav li,
nav a,
nav .dropdown-menu a {
    color: white !important;
}

nav li,
nav li a,
nav .dropdown-menu a {
    color: white !important;
}

nav li a:hover,
nav .dropdown-menu a:hover {
    background-color: white !important;
    color: #d50032 !important;
}


.comments-block {
    margin-top: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-left: 5px solid #4CAF50;
    border-radius: 5px;
    font-family: Arial, sans-serif;
}

.comments-block h4 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    color: #2c3e50;
}

.comments-block a {
    text-decoration: none;
    color: #1a73e8;
    font-weight: 500;
    transition: color 0.2s ease-in-out;
}

.comments-block a:hover {
    color: #0b58ca;
    text-decoration: underline;
}