@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  /* Colors based on list: #0F0766, #344CB7, #D01257, #FFCEE4 */
  --primary-color: #344CB7;
  --secondary-color: #172554; /* Deep, dark blue for boxes */
  --accent-color: #D01257;
  --light-color: #F8FAFC;
  --dark-color: #0F0766;
  --gradient-primary: linear-gradient(135deg, #0F0766 0%, #344CB7 100%);
  --hover-color: #4338CA;
  --background-color: #0B1120; /* Very dark background */
  --text-color: #E2E8F0;
  --border-color: rgba(52, 76, 183, 0.3);
  --divider-color: rgba(208, 18, 87, 0.2);
  --shadow-color: rgba(0, 0, 0, 0.6);
  --highlight-color: #FFCEE4; /* Light pink for contrast against dark */
  
  /* Fonts: Merriweather and Work Sans */
  --main-font: 'Merriweather', serif;
  --alt-font: 'Work Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Hover Utilities */
.hover\:border-highlight:hover {
    border-color: var(--highlight-color);
}
.hover\:text-white:hover {
    color: #ffffff !important;
}

/* Mobile Menu CSS-only */
#menu-toggle:checked ~ nav {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--dark-color);
    padding: 2rem;
    z-index: 50;
    border-bottom: 2px solid var(--accent-color);
}

#menu-toggle:checked ~ nav ul {
    flex-direction: column;
    align-items: center;
}

/* FAQ Styling */
details > summary {
    list-style: none;
    position: relative;
    padding-right: 20px;
}
details > summary::-webkit-details-marker {
    display: none;
}
details > summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--highlight-color);
    transition: transform 0.3s;
}
details[open] > summary::after {
    content: '-';
}
details[open] summary ~ * {
    animation: fade .4s ease-in-out;
}
@keyframes fade {
    0%    {opacity: 0;}
    100%  {opacity: 1;}
}