:root {
    --primary-color: #003366; /* Teal */
    --secondary-color: #FFF5E1; /* Off-White */
    --accent-color: #FFD700; /* Coral */
    --text-color: #333333; /* Charcoal */
}

body {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.navbar, footer {
    background-color: var(--primary-color);
    color: #ffffff;
}

body {
    padding-top: 56px; /* Offset for fixed navbar */
    padding-bottom: 30px;
}

section {
    padding-top: 70px;
    margin-top: -70px;
}

.hero-section {
    /* height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

#faq .accordion-button {
    color: #007bff; /* Change color for active accordion headers */
    background-color: #e7f1ff; /* Light background color for active headers */
}

#faq .accordion-body {
    font-size: 16px; /* Adjust body text size as needed */
}

#author img {
    border: 1px solid #ddd;
    border-radius: 24px;
    width: 150px;
    height: auto;
}

.subsection {
    margin-left: 20px;
}

h2 {
    margin-bottom: 20px;
}

hr {
    margin-top: 30px;
    margin-bottom: 30px;
}

@media (max-width: 500px) {
    .navbar, footer {
        --bs-navbar-brand-font-size: 1rem;
        --bs-navbar-brand-margin-end: 0;
        --bs-navbar-toggler-padding-x: 0;
    }
}

.message {
    display: none;
    color: #fff;
    text-align: center;
    padding: 4px;
    margin-top: 10px;
    font-weight: 600;
 }

.error-message {
    background: #ed3c0d;
}

.sent-message {
  background: #18d26e;
}

.copyright-text {
    font-style: italic;
}

#top-carousel .carousel-indicators {
    bottom: -50px;
    z-index: 10;
}

#top-carousel .carousel-indicators button {
    background-color: #333;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 2px;
}

#top-carousel .carousel-item .card {
    min-height: 124px;
}