@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  /* Colors based on list: #2980B9, #8E44AD, #F39C12, #D35400 */
  --primary-color: #2980B9;
  --secondary-color: #8E44AD;
  --accent-color: #D35400;
  --light-color: #FFFFFF;
  --dark-color: #2C3E50;
  --gradient-primary: linear-gradient(135deg, #2980B9 0%, #8E44AD 100%);
  --hover-color: #3498DB;
  --background-color: #F2F2F2; /* Colorful but clean bg */
  --text-color: #333333;
  --border-color: rgba(41, 128, 185, 0.2);
  --divider-color: rgba(142, 68, 173, 0.1);
  --shadow-color: rgba(0, 0, 0, 0.1);
  --highlight-color: #F39C12;
  
  /* Fonts: Montserrat and Roboto */
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Roboto', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Hover effects */
.hover\:text-underline:hover {
    text-decoration: underline;
}

/* Mobile menu toggle */
#menu-toggle:checked ~ nav {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--dark-color);
    padding: 1.5rem;
    z-index: 50;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

#menu-toggle:checked ~ nav ul {
    flex-direction: column;
    align-items: center;
}

/* FAQ toggles */
details > summary {
    list-style: none;
    transition: color 0.3s;
}
details > summary::-webkit-details-marker {
    display: none;
}
details[open] summary {
    color: var(--accent-color);
}
details[open] summary ~ * {
    animation: slidedown .3s ease-in-out;
}
@keyframes slidedown {
    0%    {opacity: 0; transform: translateY(-10px);}
    100%  {opacity: 1; transform: translateY(0);}
}