@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #34495D;
  --secondary-color: #2C3D4F;
  --accent-color: #EE7738;
  --light-color: #F5F5F5;
  --dark-color: #0F1021;
  --gradient-primary: linear-gradient(135deg, #34495D 0%, #2C3D4F 100%);
  --hover-color: #EE7738;
  --background-color: #EAE4D5;
  --text-color: #2C3E50;
  --border-color: rgba(52, 73, 93, 0.2);
  --divider-color: rgba(44, 61, 79, 0.1);
  --shadow-color: rgba(15, 16, 33, 0.15);
  --highlight-color: #F59D2A;
  --main-font: 'Roboto Condensed', sans-serif;
  --alt-font: 'Open Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header & Nav */
.site-header { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; position: sticky; top: 0; z-index: 100; }
.navigation ul { display: flex; gap: 20px; list-style: none; }
.navigation a { text-decoration: none; color: inherit; transition: color 0.3s; }
.navigation a:hover, .hover-underline:hover { color: var(--highlight-color); text-decoration: underline; }
.menu-checkbox, .menu-icon { display: none; }

/* Responsive Grid */
.content-grid { display: flex; flex-wrap: wrap; gap: 20px; }
.timeline-grid, .testimonials-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* Components */
.cta-btn { background: var(--accent-color); color: #fff; padding: 12px 24px; border-radius: 30px; text-decoration: none; font-weight: bold; transition: all 0.3s; box-shadow: 5px 5px 15px var(--shadow-color); }
.cta-btn:hover { background: var(--highlight-color); transform: translateY(-2px); }
.rounded-image { border-radius: 15px; width: 100%; height: auto; display: block; }
.shadow-neumorph { border: 1px solid var(--border-color); box-shadow: 8px 8px 16px var(--shadow-color), -8px -8px 16px rgba(255,255,255,0.5); border-radius: 12px; padding: 20px; background: rgba(255,255,255,0.4); transition: transform 0.3s; }
.shadow-neumorph:hover { transform: translateY(-5px); }

/* Mobile */
@media (max-width: 768px) {
  .content-grid .img-wrapper, .content-grid .text-wrapper { width: 100% !important; }
  .menu-icon { display: block; font-size: 28px; color: var(--light-color); cursor: pointer; }
  .navigation { display: none; width: 100%; position: absolute; top: 100%; left: 0; background: var(--dark-color); padding: 20px 0; }
  .navigation ul { flex-direction: column; align-items: center; }
  .menu-checkbox:checked ~ .navigation { display: block; }
}