/* General Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body, html {
    height: 100vh;
    width: 100vw;
    background-image: url(/assets/images/LandingPageplainbg.jpg);
    background-size: 100vw 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    display: flex;
}

@media (max-width: 768px) {
    body, html {
        background-image: url(/assets/images/LandingPageplainbg.jpg);
        background-size: auto 100vh;
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        width: 100vw;
        height: 100vh;
        overflow-x: auto;
    }
}

:root {
    --primary-color: #b37801;
    --secondary-color: #8d0000;
}

.accordion-section {
    padding-top: 40px;
}

.accordion-section h2 {
    font-weight: bold;
    color: var(--secondary-color) !important;
    text-shadow: 2px 4px 6px rgb(255, 255, 255);
}

.accordion-section .accordion-button {
  background-color: var(--secondary-color);
  color: white;
  font-weight: 500;
  border: none;
  box-shadow: none !important;
  transition: background-color 0.3s ease;
}

.accordion-section .accordion-button:not(.collapsed) {
  background-color: var(--secondary-color);
  color: #fff;
}

.accordion-section .accordion-body {
  background-color: var(--primary-color);
  border-left: 3px solid var(--primary-color);
  padding: 1rem;
  font-size: 0.95rem;
  color: #fff;
}

.accordion-section .accordion-item {
  margin-bottom: 0.75rem;
  border: none;
}

.accordion-section .accordion-button i {
  transition: transform 0.3s ease;
}

.accordion-section .accordion-button[aria-expanded="true"] i {
  transform: rotate(90deg);
}

.accordion-section .accordion {
  padding-bottom: 60px;
}

/* Make Bootstrap 5 accordion chevron (arrow) icon white */
.accordion-button::after {
filter: brightness(0) invert(1);
}

/* FAQ Button */

.faqbutton {
    margin: 20px 0;
    text-align: center;
}

.btn.btn-primary {
    display: inline-block;
    padding: 10px 30px;
    width: 200px;
    background-color: #df1212;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 10px;
    text-decoration: none;
    text-align: center;
}
.btn.btn-primary:hover,
.btn.btn-primary:focus {
    background-color: #ff2b2b;
    color: #fff;
    text-decoration: none;
}
