/* General Body Styles */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fff; /* bg-white */
    color: #1f2937; /* text-gray-800 */
}

/* Layout */
.section-spacing {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .section-spacing {
        padding: 5rem 0;
    }
}

/* Header Placeholder */
/* Ensures no layout shift when the header is loaded dynamically */
#header-placeholder {
    min-height: 124px; /* Matches the actual header height */
}

/* Page Headers / Banners */
.page-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
}

.page-header-content {
    position: relative;
    max-width: 1000px;
    margin: auto;
    padding: 0 1rem;
}

.page-header-text-box {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1.5rem; /* p-6 */
    border-radius: 0.5rem; /* rounded-lg */
    display: inline-block;
    -webkit-backdrop-filter: blur(2px); /* Safari */
    backdrop-filter: blur(2px);
}

@media (min-width: 768px) {
    .page-header-text-box {
        padding: 2.5rem; /* md:p-10 */
    }
}

/* Buttons */
.btn-primary {
    display: inline-block;
    width: 100%;
    text-align: center;
    background-color: #004AAD;
    color: white;
    font-weight: 700;
    padding: 0.75rem 1.5rem; /* py-3 px-6 */
    border-radius: 0.5rem; /* rounded-lg */
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #003380; /* A darker shade for hover */
}

/* Forms */
.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db; /* border */
    border-radius: 0.5rem; /* rounded-lg */
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px #004AAD; /* focus:ring-2 focus:ring-[#004AAD] */
}

/* FAQ Accordion */
.faq-item {
    padding-top: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    margin-top: 1rem;
    color: #4b5563; /* text-gray-700 */
}

.faq-icon {
    transition: transform 0.3s;
}

.faq-icon.rotate-180 {
    transform: rotate(180deg);
}

/* Floating WhatsApp Button */
.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #004AAD;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 1px 1px 2px #999;
    z-index: 100;
    transition: transform 0.2s ease-in-out;
}

.float:hover {
    transform: scale(1.1);
}

.my-float {
    margin-top: 16px;
}
#footer-placeholder { min-height: 300px; }
