body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    background-color: #f8f8f8;
    color: #333;
}
.parallax {
    background-image: url('../img/banner.avif');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.parallax::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
}
.section-heading {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 2rem;
   
}
.section-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #2a6a9e;
    border-radius: 5px;
}
.scroll-smooth {
    scroll-behavior: smooth;
}
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a6a9e;
    color: white;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}
.cookie-consent.hidden {
    display: none;
}
.thank-you-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 1100;
    display: none;
}
.thank-you-modal.active {
    display: block;
}
.thank-you-modal h2 {
    color: #2a6a9e;
    margin-bottom: 1rem;
}
.thank-you-modal button {
    background-color: #2a6a9e;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.thank-you-modal button:hover {
    background-color: #1e4a6e;
}
.accordion-item {
    border-bottom: 1px solid #eee;
}
.accordion-header {
    cursor: pointer;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: #333;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 1rem;
    padding-right: 1rem;
    color: #555;
}
.accordion-item.active .accordion-content {
    max-height: 200px;
    padding-bottom: 1rem;
}
.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}
.accordion-icon {
    transition: transform 0.3s ease;
}