@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
  /* Палітра: #5CB338 #ECE852 #337357 #F2F2F2 */
  --primary-color: #5CB338;
  --secondary-color: #337357;
  --accent-color: #5CB338;
  --light-color: #F2F2F2;
  --dark-color: #1a2e1d;
  --gradient-primary: linear-gradient(135deg, #5CB338 0%, #337357 100%);
  --hover-color: #4a912d;
  --background-color: #ffffff;
  --text-color: #333333;
  --border-color: rgba(92, 179, 56, 0.2);
  --divider-color: rgba(51, 115, 87, 0.1);
  --shadow-color: rgba(0, 0, 0, 0.1);
  --highlight-color: #ECE852;
  --main-font: 'Roboto Condensed', sans-serif;
  --alt-font: 'Poppins', sans-serif;
}

body { font-family: var(--alt-font); color: var(--text-color); margin: 0; overflow-x: hidden; }
section { padding-top: 10dvh; padding-bottom: 10dvh; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }

/* Neuromorphism */
.neuro-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 10px 10px 20px #e0e0e0, -10px -10px 20px #ffffff;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}
.neuro-card:hover { transform: translateY(-5px); box-shadow: 15px 15px 30px #d1d1d1; }

header { background: var(--dark-color); padding: 1rem 0; position: sticky; top: 0; z-index: 1000; }
.logo img { height: 50px; }
.navigation ul { display: flex; list-style: none; gap: 20px; }
.navigation a { color: #fff; text-decoration: none; font-weight: 500; }

/* Mobile Menu */
#menu-toggle { display: none; }
.menu-btn { display: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

@media (max-width: 768px) {
    .menu-btn { display: block; order: -1; }
    .navigation { display: none; width: 100%; }
    #menu-toggle:checked ~ .navigation { display: block; }
    .navigation ul { flex-direction: column; align-items: center; padding: 1rem 0; }
    .logo { width: 100%; text-align: center; }
}

footer { background: var(--dark-color); color: #fff; padding: 3rem 0; }
footer img[alt="logo"], header img[alt="logo"] { filter: brightness(0) invert(1); }

/* Timeline */
.timeline { position: relative; padding: 2rem 0; }
.timeline-item { position: relative; padding-left: 40px; margin-bottom: 30px; border-left: 3px solid var(--primary-color); }