body {
    font-family: 'Source Sans Pro', sans-serif;
    background-color: #E8ECEF;
    color: #000000;
    font-size: 18px;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Slab', serif;
    color: #4682B4;
}

.navbar {
    background-color: #4682B4;
}

.navbar-brand, .nav-link {
    color: #ffffff !important;
    font-size: 18px;
    text-transform: uppercase;
}

.nav-link:hover {
    color: #8B0000 !important;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/static/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.btn-primary {
    background-color: #343A40;
    border-color: #343A40;
    font-size: 18px;
    padding: 10px 20px;
}

.btn-primary:hover {
    background-color: #23272b;
    border-color: #23272b;
}

.card {
    background-color: #ffffff;
    border: 1px solid #E8ECEF;
    border-radius: 6px;
    margin-bottom: 20px;
}

.card h3 {
    color: #4682B4;
}

.alert {
    border-radius: 6px;
    font-size: 18px;
}

.form-control, .form-select {
    font-size: 18px;
    padding: 10px;
    border-color: #4682B4;
}

.accordion-button {
    font-size: 18px;
    color: #4682B4;
}

.accordion-button:not(.collapsed) {
    background-color: #E8ECEF;
    color: #4682B4;
}

.gallery-img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 15px;
}

.bg-steel-blue {
    background-color: #4682B4;
}

.table {
    font-size: 18px;
}

.list-group-item {
    font-size: 18px;
    cursor: pointer;
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .navbar-brand {
        font-size: 1.2rem;
    }
    .nav-link {
        font-size: 16px;
    }
    .btn {
        font-size: 16px;
        padding: 8px 16px;
    }
    .form-control, .form-select {
        font-size: 16px;
    }
    footer {
  font-size: 0.9rem; /* smaller text */
}

footer h6 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

footer ul li {
  margin-bottom: 4px;
}

}