/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Layout */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background: linear-gradient(to bottom, #11264F, #A83551);
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: transparent; /* Blends with the gradient */
}

header .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #FFFFFF;
    text-transform: uppercase;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

header nav ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #D94356;
}

/* Main Content */
main {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
    background: #11264F;
    color: #F5F5F5;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Section Styling */
section {
    margin-bottom: 20px;
}

h1, h2, h3 {
    margin-bottom: 10px;
    color: #F5F5F5;
}

/* Custom List Styling */
ul.custom-list {
    list-style: none; /* Remove default bullets */
    padding-left: 0;
}

ul.custom-list li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 30px;
    color: #FFFFFF;
}

ul.custom-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 0;
    color: #D94356;
    font-size: 1.2rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: transparent; /* Seamless with the gradient */
    color: #FFFFFF;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    color: #FFFFFF;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
}

.footer-links a:hover {
    color: #D94356;
}

.footer-logos img {
    height: 40px;
    margin: 0 10px;
    vertical-align: middle;
}

.footer-social a img {
    height: 30px;
    margin: 0 5px;
    vertical-align: middle;
}

.footer-social a:hover img {
    filter: brightness(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    header .logo {
        font-size: 1.5rem;
    }

    header nav ul {
        gap: 20px;
    }

    main {
        padding: 15px;
    }

    footer .footer-logos img,
    footer .footer-social a img {
        height: 30px;
    }
}

@media (max-width: 480px) {
    header nav ul {
        flex-direction: column;
        gap: 10px;
    }
}


/* Typography Styles for h1, h2, h3, and <p> */

/* Headings */
h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #F5F5F5; /* Bright white for readability */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
    border-bottom: 3px solid #D94356; /* Accent color underline */
    padding-bottom: 10px;
}

h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #F5F5F5;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
    border-bottom: 2px solid #A83551; /* Slightly darker accent */
    padding-bottom: 8px;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #EAEAEA;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Paragraph */
p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: #FFFFFF; /* Bright white for readability */
    margin-bottom: 20px;
    text-align: justify;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
        border-bottom-width: 2px;
    }

    h2 {
        font-size: 1.5rem;
        border-bottom-width: 1px;
    }

    h3 {
        font-size: 1.25rem;
    }

    p {
        font-size: 0.9rem;
    }
}



/* FAQ Section Styles */
.faq-section {
    margin: 40px auto;
    max-width: 1000px;
    background: #11264F;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.faq-header {
    padding: 20px;
    background: linear-gradient(to right, #A83551, #D94356);
    color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #F5F5F5;
    cursor: pointer;
    position: relative;
    background: #11264F;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #1A3967;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #D94356;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: #1A3967;
    color: #FFFFFF;
    font-size: 1rem;
    line-height: 1.8;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.visible {
    max-height: 500px; /* Set to a high value for smooth transition */
    padding: 20px;
}

/* FAQ Accordion Responsive Design */
@media (max-width: 768px) {
    .faq-question {
        font-size: 1rem;
        padding: 15px;
    }

    .faq-answer {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-header {
        font-size: 1.5rem;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 10px;
    }

    .faq-answer {
        font-size: 0.85rem;
    }
}


.site-header{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
}

.site-header .logo{
  display: inline-flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.burger{
  display: none;
  width: 46px;
  height: 46px;
  border: 2px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.18);
  border-radius: 12px;
  padding: 8px;
  cursor: pointer;
  z-index: 2000;
  flex: 0 0 auto;
}

.burger-icon{ width: 100%; height: 100%; }
.burger-icon path{
  stroke: #ffffff;
  stroke-width: 2.8;
  stroke-linecap: round;
  fill: none;
}

@media (max-width: 768px){
  .burger{ display: inline-flex; align-items: center; justify-content: center; }

  .site-header .main-nav{
    display: none;
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 10px);
    z-index: 1500;
    background: #0b1f3a;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 12px 30px rgba(0,0,0,.35);
  }

  .site-header .main-nav.is-open{ display: block; }

  .site-header .main-nav ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .site-header .main-nav a{
    display: block;
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
  }
}

.logo-img{
  height: 48px;
  width: auto;
  display: block;
}

@media (max-width: 768px){
  .logo-img{
    height: 36px;
  }
}

/* =========================
   Responsive Table Styles
   ========================= */

.table-wrapper {
    width: 100%;
    margin: 30px 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Custom scrollbar */
.table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.table-wrapper::-webkit-scrollbar-track {
    background: #0b1f3a;
    border-radius: 10px;
}

.table-wrapper::-webkit-scrollbar-thumb {
    background: #D94356;
    border-radius: 10px;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #A83551;
}

/* Table */
table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    background: #11264F;
    color: #FFFFFF;
    overflow: hidden;
}

/* Table header */
table thead {
    background: linear-gradient(to right, #A83551, #D94356);
}

table th {
    padding: 14px 16px;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
    vertical-align: middle;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Table cells */
table td {
    padding: 13px 16px;
    color: #F5F5F5;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
    vertical-align: middle;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Alternating rows */
table tbody tr:nth-child(even) {
    background: #1A3967;
}

table tbody tr:nth-child(odd) {
    background: #11264F;
}

/* Hover */
table tbody tr:hover {
    background: #243F6D;
    transition: background 0.2s ease;
}

/* Links inside tables */
table a {
    color: #FFFFFF;
    font-weight: 600;
    text-decoration: underline;
}

table a:hover {
    color: #D94356;
}

/* Mobile */
@media (max-width: 768px) {

    .table-wrapper {
        margin: 25px 0;
        border-radius: 8px;
    }

    table {
        min-width: 650px;
    }

    table th {
        padding: 12px 14px;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    table td {
        padding: 11px 14px;
        font-size: 0.9rem;
    }
}

/* Small mobile */
@media (max-width: 480px) {

    .table-wrapper {
        margin: 20px 0;
    }

    table {
        min-width: 600px;
    }

    table th {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    table td {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}