@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
  /* Palette: Fresh Greens & Teal */
  --primary-color: #27AE60;
  --secondary-color: #16A085;
  --accent-color: #2ECC71;
  --light-color: #FFFFFF;
  --dark-color: #2C3E50;
  --gradient-primary: linear-gradient(135deg, #2ECC71 0%, #16A085 100%);
  --hover-color: #1E8449;
  --background-color: #F2F2F2;
  --text-color: #4B5563;
  --border-color: rgba(39, 174, 96, 0.2);
  --divider-color: rgba(22, 160, 133, 0.1);
  --shadow-color: rgba(0, 0, 0, 0.1);
  --highlight-color: #F1C40F; /* Complementary Yellow */
  --main-font: 'Roboto Condensed', sans-serif;
  --alt-font: 'Open Sans', sans-serif;
}

/* Base Styles */
body {
    font-family: var(--alt-font);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--main-font);
    font-weight: 700;
}

/* Neumorphism Utilities */
.neu-card {
    background: var(--light-color);
    border-radius: 15px;
    box-shadow: 8px 8px 16px rgba(0,0,0,0.05), -8px -8px 16px rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.5);
    transition: transform 0.3s ease;
}

.neu-card:hover {
    transform: translateY(-5px);
    box-shadow: 12px 12px 20px rgba(0,0,0,0.08), -12px -12px 20px rgba(255,255,255,0.9);
}

.neu-btn {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.1), -5px -5px 10px rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}

.neu-btn:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

/* Custom CSS Menu (No JS) */
#menu-toggle { display: none; }
.nav-menu {
    transition: max-height 0.3s ease-out;
    overflow: hidden;
    max-height: 0;
}
#menu-toggle:checked ~ .nav-menu {
    max-height: 500px;
}
@media (min-width: 768px) {
    .nav-menu { max-height: none; overflow: visible; }
}

/* Section Specifics */
.timeline-item {
    position: relative;
    padding-left: 2rem;
    border-left: 3px solid var(--accent-color);
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: var(--primary-color);
}

.faq-content {
    max-height: none; /* Always open per requirements */
    opacity: 1;
}

/* Gradient Text */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}