@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #27AE60;
  --secondary-color: #2C3E50;
  --accent-color: #16A085;
  --light-color: #ECF0F1;
  --dark-color: #1ABC9C;
  --gradient-primary: linear-gradient(135deg, #27AE60 0%, #1ABC9C 100%);
  --hover-color: #2ECC71;
  --background-color: #FDFEFE;
  --text-color: #34495E;
  --border-color: rgba(39, 174, 96, 0.2);
  --divider-color: rgba(44, 62, 80, 0.1);
  --shadow-color: rgba(44, 62, 80, 0.08);
  --highlight-color: #F1C40F;
  --main-font: 'Lora', serif;
  --alt-font: 'Lato', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

.site-header { display: flex; justify-content: space-between; align-items: center; padding: 20px; position: relative; }
.navigation ul { display: flex; gap: 25px; list-style: none; font-weight: bold; }
.navigation a { text-decoration: none; color: inherit; transition: color 0.3s; }
.navigation a:hover, .hover-underline:hover { color: var(--highlight-color); }
.menu-checkbox, .menu-icon { display: none; }

.content-grid { display: flex; flex-wrap: wrap; gap: 30px; }
.timeline-grid { display: grid; gap: 25px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.testimonials-grid { display: grid; gap: 30px; }

.cta-btn { background: var(--highlight-color); color: var(--secondary-color); padding: 15px 30px; border-radius: 5px; text-decoration: none; font-weight: bold; text-transform: uppercase; transition: background 0.3s; }
.cta-btn:hover { background: #F39C12; }
.rounded-image { border-radius: 8px; width: 100%; height: auto; display: block; }
.shadow-neumorph { border: 1px solid var(--border-color); box-shadow: 6px 6px 12px var(--shadow-color), -6px -6px 12px #ffffff; border-radius: 10px; padding: 25px; background: #ffffff; transition: all 0.3s ease; }
.shadow-neumorph:hover { box-shadow: inset 4px 4px 8px var(--shadow-color), inset -4px -4px 8px #ffffff; }
.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 768px) {
  .content-grid .img-wrapper, .content-grid .text-wrapper { width: 100% !important; }
  .menu-icon { display: block; font-size: 30px; color: var(--light-color); cursor: pointer; }
  .navigation { display: none; width: 100%; position: absolute; top: 100%; left: 0; background: var(--secondary-color); padding: 15px 0; z-index: 50;}
  .navigation ul { flex-direction: column; align-items: center; }
  .menu-checkbox:checked ~ .navigation { display: block; }
}