:root {
  /* Colors */
  --white-color: #fff;
  --black-color: #000000;
  --primary-color:#EE0202; 
  --secondary-color: #4d81db ;
  --tertiary-color :#FFECDB; 
  --quaternary-color : #fffb00; 
    
  /* Font Size */
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-md: 16px;
  --font-size-lg: 20px;
  --font-size-xl: 24px;
  --font-size-xxl: 32px;
  --font-size-xxxl: 74px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #f7f7f7;
    color: #333;
    line-height: 1.6;
}
a {
    color: #007BFF;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 80px auto;
    padding: 50px 0;
}

/* Section styles */
section {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px 40px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #222;
}
section p {
    margin-bottom: 15px;
}
section ul {
    margin-top: 10px;
    list-style-type: disc;
    padding-left: 20px;
}
section ul li {
    margin-bottom: 10px;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    top: 108px;
}
header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #111;
}
header p {
    font-size: 1.1rem;
    color: #555;
}

/* Highlight boxes */
.highlight {
    background-color: #eaf5ff;
    padding: 15px 20px;
    border-left: 5px solid #007BFF;
    border-radius: 8px;
    margin-top: 15px;
}


/* Responsive */
@media (max-width: 768px) {
    section {
        padding: 25px 20px;
    }
}

/*  FAQ */
/*Change accordion header background to light red */
/* FAQ Section */
#Faq-section {
    padding: 50px 20px;
    max-width: 900px;
    margin: auto;
}

#Faq-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.accordion-item {
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-header {
    background-color: var(--white-color);
    cursor: pointer;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header:hover {
    background-color: #eaeaea;
}

.accordion-body {
    padding: 15px 20px;
    display: none;
    background-color: var(--primary-color);
    line-height: 1.6;
    color: var(--white-color);
}

.accordion-body.show {
    display: block;
}

.accordion-button::after {
    content: "\25BC";
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.accordion-button.active::after {
    transform: rotate(180deg);
}

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

#Faq-section .btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#Faq-section .btn:hover {
    background-color: #ff7381;
}

