body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    /* Background */
    background-image: url("../images/BackgroundImage.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; /* Prevent tiling */
    background-attachment: fixed; /* Smooth scrolling effect */
}

/* Modern Header Styling */
.header {
    text-align: center;
    padding: 40px 20px;
    background: transparent;
}

.header h1,
.header h2 {
    color: #EFB261;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    text-shadow: 0 2px 6px rgba(0,0,0,0.45);
    background: rgba(0, 0, 0, 0.35);
    padding: 20px 30px;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
}

/* h1 – strong, bold, modern */
.header h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* h2 – lighter, elegant subtitle */
.header h2 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 5px;
    margin-bottom: 20px;
}

    .header {
    padding: 20px 10px;
    text-align: center;
}

.header-inner {
    text-align: center;
}

.logo {
    width: 40vw;
    max-width: 165px;
    height: auto;
}

/* MOBILE NAVIGATION */
@media (max-width: 600px) {
    .nav-btn {
        width: 100%;
        max-width: 300px;
        margin: 10px auto;
        display: block;
    }
}

.center-wrapper {
    display: flex;
    justify-content: center;   /* centre horizontally */
    align-items: center;       /* centre vertically */
    min-height: 50vh;         /* fill the screen height */
    width: 100%;
    padding: 20px;            /* prevents edge-to-edge on mobile */
    box-sizing: border-box;
}

.info-box {
    background: rgba(255,255,255,0.85);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    max-width: 700px;
    width: 100%;
    text-align: left;
}

    /* Button Hover (if used elsewhere) */
    .button:hover {
        opacity: 0.5;
    }

 /*Footer */
 footer {
     padding: 20px;
     text-align: left;
  }

/* Social Icon */
.social-icon {
    max-width: 200px;
    min-width: 44px;
    max-height: 50px;
    min-height: 44px;
}

/* FAQ Box Wrapper */
.faq-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 25px 20px;
    background: #ffffff; /* white box like your homepage section */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* FAQ Title */
.faq-title {
    text-align: center;
    color: #ED9121;
    margin-bottom: 25px;
    font-size: 2rem;
}

/* Accordion Items */
.faq-item {
    border-bottom: 1px solid #ddd;
}

/* Accordion Button */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 15px 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    color: #333;
    position: relative;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #ED9121;
}

/* Plus/Minus Icon */
.faq-question::after {
    content: "+";
    position: absolute;
    right: 10px;
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

/* Open State */
.faq-question.active::after {
    content: "-";
}

/* Answer Panel */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 10px 15px;
    margin: 0;
    color: #555;
    line-height: 1.5;
}