/* ===== VARIABLES ===== */
:root {
  /* Colors */
  --primary-color: #2c3e50;
  --primary-dark: #1a252f;
  --primary-light: #34495e;
  --secondary-color: #3498db;
  --secondary-dark: #2980b9;
  --secondary-light: #5dade2;
  --accent-color: #e74c3c;
  --accent-dark: #c0392b;
  --accent-light: #f1948a;
  --light-color: #ecf0f1;
  --light-dark: #bdc3c7;
  --dark-color: #2c3e50;
  --dark-light: #34495e;
  --success-color: #27ae60;
  --warning-color: #f39c12;
  --danger-color: #e74c3c;
  --info-color: #3498db;

  /* Typography */
  --heading-font: 'Inter', sans-serif;
  --body-font: 'IBM Plex Sans', sans-serif;
  --base-font-size: 16px;
  --h1-size: 2.5rem;
  --h2-size: 2rem;
  --h3-size: 1.5rem;
  --h4-size: 1.25rem;
  --small-font: 0.875rem;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 5rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 15px 25px rgba(0, 0, 0, 0.15), 0 5px 10px rgba(0, 0, 0, 0.05);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Layout */
  --container-width: 1200px;
  --header-height: 80px;
  --footer-height: auto;
  --column-gap: 2rem;
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: var(--base-font-size);
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  line-height: 1.6;
  color: var(--dark-color);
  background-color: #ffffff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
  color: var(--primary-color);
}

h1 {
  font-size: var(--h1-size);
}

h2 {
  font-size: var(--h2-size);
}

h3 {
  font-size: var(--h3-size);
}

h4 {
  font-size: var(--h4-size);
}

p {
  margin-bottom: var(--spacing-md);
}

a {
  text-decoration: none;
  color: var(--secondary-color);
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--secondary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style-position: inside;
  margin-bottom: var(--spacing-md);
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* ===== UTILITIES ===== */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-sm {
  margin-bottom: var(--spacing-sm);
}

.mb-md {
  margin-bottom: var(--spacing-md);
}

.mb-lg {
  margin-bottom: var(--spacing-lg);
}

.mb-xl {
  margin-bottom: var(--spacing-xl);
}

.mt-0 {
  margin-top: 0;
}

.mt-sm {
  margin-top: var(--spacing-sm);
}

.mt-md {
  margin-top: var(--spacing-md);
}

.mt-lg {
  margin-top: var(--spacing-lg);
}

.mt-xl {
  margin-top: var(--spacing-xl);
}

/* ===== BUTTONS ===== */
.btn, 
button,
input[type="submit"] {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--heading-font);
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
}

.btn:hover, 
button:hover,
input[type="submit"]:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active, 
button:active,
input[type="submit"]:active {
  transform: translateY(1px);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
}

.btn-accent {
  background-color: var(--accent-color);
  color: white;
}

.btn-accent:hover {
  background-color: var(--accent-dark);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: white;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.header-content {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.logo a {
  color: var(--primary-color);
  text-decoration: none;
}

.logo h1 {
  margin: 0;
  font-size: 1.8rem;
}

.main-nav ul {
  display: flex;
  gap: var(--spacing-md);
  margin: 0;
  list-style: none;
}

.main-nav a {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--secondary-color);
  transition: width var(--transition-normal);
}

.main-nav a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  height: 2px;
  width: 100%;
  background-color: var(--primary-color);
  transition: all var(--transition-normal);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background-color: var(--light-color);
  z-index: 999;
  padding: var(--spacing-lg);
  transform: translateX(-100%);
  transition: transform var(--transition-normal);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu li {
  margin-bottom: var(--spacing-md);
}

.mobile-menu a {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 500;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  padding: var(--spacing-xxl) 0;
  margin-top: var(--header-height);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  display: flex;
  align-items: center;
  min-height: 80vh;
}

.hero-content {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.hero-content h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
}

/* ===== SECTION STYLES ===== */
section {
  padding: var(--spacing-xxl) 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  position: relative;
  font-weight: 700;
  color: var(--primary-color);
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  margin: var(--spacing-sm) auto 0;
  border-radius: var(--radius-full);
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-xl);
  font-size: 1.1rem;
  color: var(--dark-light);
}

/* ===== SERVICES SECTION ===== */
.services {
  background-color: #f9f9f9;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.card {
  background-color: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: var(--spacing-md);
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-content h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--primary-color);
}

.card-content p {
  margin-bottom: var(--spacing-md);
  color: var(--dark-light);
}

.price {
  font-weight: 700;
  color: var(--primary-color);
  margin-top: auto;
  font-size: 1.1rem;
}

/* ===== PROCESS SECTION ===== */
.process {
  background-color: white;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: var(--light-dark);
  left: 50%;
  margin-left: -2px;
  border-radius: var(--radius-full);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-xl);
  position: relative;
}

.timeline-marker {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background-color: var(--secondary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  box-shadow: var(--shadow-md);
}

.timeline-content {
  width: 45%;
  padding: var(--spacing-md);
  background-color: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-right: auto;
}

.timeline-content h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--primary-color);
}

.timeline-content p {
  color: var(--dark-light);
}

/* ===== RESOURCES SECTION ===== */
.resources {
  background-color: #f9f9f9;
}

.resource-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
}

/* ===== VISION SECTION ===== */
.vision {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  padding: var(--spacing-xxl) 0;
}

.vision .section-title {
  color: white;
}

.vision .section-title::after {
  background-color: white;
}

.vision-content {
  max-width: 900px;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.2);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  backdrop-filter: blur(5px);
  box-shadow: var(--shadow-md);
}

.vision-text p {
  margin-bottom: var(--spacing-md);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ===== GALLERY SECTION ===== */
.gallery {
  background-color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
  height: 250px;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ===== INSTRUCTORS / TEAM SECTION ===== */
.instructors {
  background-color: #f9f9f9;
}

.team-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.team-cards .card-image {
  height: 300px;
  width: 300px;
  border-radius: var(--radius-full);
  margin: 0 auto var(--spacing-md);
  overflow: hidden;
}

.team-cards .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.position {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: var(--spacing-sm);
}

/* ===== MEDIA SECTION ===== */
.media {
  background-color: white;
}

.media-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.media-item {
  display: flex;
  align-items: center;
  background-color: #f9f9f9;
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.media-item:hover {
  transform: translateY(-5px);
}

.media-icon {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-right: var(--spacing-md);
  box-shadow: var(--shadow-sm);
}

.media-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-text {
  flex-grow: 1;
}

.media-text h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--primary-color);
}

.media-text p {
  color: var(--dark-light);
}

.date {
  font-size: var(--small-font);
  color: var(--secondary-color);
  font-style: italic;
}

/* ===== AWARDS SECTION ===== */
.awards {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
}

.awards .section-title {
  color: white;
}

.awards .section-title::after {
  background-color: white;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  text-align: center;
}

.award-item {
  padding: var(--spacing-md);
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.award-item:hover {
  transform: translateY(-5px);
}

.award-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--spacing-md);
}

.award-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.award-item h3 {
  color: white;
  margin-bottom: var(--spacing-sm);
}

.award-item p {
  color: rgba(255, 255, 255, 0.8);
}

/* ===== CAREERS SECTION ===== */
.careers {
  background-color: #f9f9f9;
}

.careers-content {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
}

.careers-image {
  flex: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.careers-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.careers-text {
  flex: 1;
}

.careers-text h3 {
  margin-bottom: var(--spacing-md);
  color: var(--primary-color);
}

.careers-text ul {
  margin-bottom: var(--spacing-lg);
  list-style-type: none;
}

.careers-text ul li {
  margin-bottom: var(--spacing-xs);
  position: relative;
  padding-left: 1.5rem;
}

.careers-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.job-positions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
}

.job-item {
  padding: var(--spacing-md);
  background-color: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.job-item h4 {
  margin-bottom: var(--spacing-sm);
  color: var(--primary-color);
}

.job-item p {
  margin-bottom: var(--spacing-md);
  color: var(--dark-light);
}

/* ===== CONTACT SECTION ===== */
.contact {
  background-color: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
}

.info-item {
  margin-bottom: var(--spacing-md);
}

.info-item h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--primary-color);
}

.info-item p {
  color: var(--dark-light);
}

.map {
  grid-column: 1 / -1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 300px;
}

.map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form {
  background-color: #f9f9f9;
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  margin-bottom: var(--spacing-md);
  color: var(--primary-color);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
  color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--light-dark);
  border-radius: var(--radius-sm);
  font-family: var(--body-font);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
}

.form-group input[type="checkbox"] {
  width: auto;
  margin-right: var(--spacing-xs);
}

.form-group input[type="checkbox"] + label {
  display: inline;
  font-weight: normal;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--primary-color);
  color: white;
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-logo h2 {
  color: white;
  margin-bottom: var(--spacing-sm);
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  justify-content: space-between;
  gap: var(--spacing-md);
}

.links-column h3 {
  color: white;
  margin-bottom: var(--spacing-md);
  font-size: 1.2rem;
}

.links-column ul {
  list-style: none;
  margin: 0;
}

.links-column li {
  margin-bottom: var(--spacing-xs);
}

.links-column a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.links-column a:hover {
  color: white;
}

.footer-social h3 {
  color: white;
  margin-bottom: var(--spacing-md);
  font-size: 1.2rem;
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
}

.social-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.social-links a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--small-font);
}

/* ===== SUCCESS PAGE ===== */
.success-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: var(--spacing-lg);
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: var(--success-color);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
  color: white;
  font-size: 3rem;
}

.success-content h1 {
  margin-bottom: var(--spacing-md);
}

.success-content p {
  margin-bottom: var(--spacing-lg);
  max-width: 600px;
}

/* ===== PRIVACY & TERMS PAGES ===== */
.privacy-page,
.terms-page {
  padding-top: calc(var(--header-height) + var(--spacing-xl));
  padding-bottom: var(--spacing-xl);
}

.privacy-content,
.terms-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content h1,
.terms-content h1 {
  margin-bottom: var(--spacing-lg);
}

.privacy-content h2,
.terms-content h2 {
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.privacy-content p,
.terms-content p {
  margin-bottom: var(--spacing-md);
}

.privacy-content ul,
.terms-content ul {
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-md);
}

.privacy-content li,
.terms-content li {
  margin-bottom: var(--spacing-xs);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.fade-in {
  animation: fadeIn var(--transition-normal) forwards;
}

.slide-in-up {
  animation: slideInUp var(--transition-normal) forwards;
}

.pulse {
  animation: pulse 2s infinite;
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 1200px) {
  :root {
    --container-width: 960px;
  }
}

@media (max-width: 992px) {
  :root {
    --container-width: 720px;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-marker {
    left: 30px;
    transform: none;
  }
  
  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px !important;
  }
  
  .careers-content {
    flex-direction: column;
  }
  
  .careers-image, 
  .careers-text {
    width: 100%;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --container-width: 540px;
    --h1-size: 2rem;
    --h2-size: 1.75rem;
    --h3-size: 1.5rem;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    flex-direction: column;
  }
  
  .service-cards,
  .gallery-grid,
  .team-cards,
  .awards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  :root {
    --container-width: 100%;
    --h1-size: 1.75rem;
    --h2-size: 1.5rem;
    --h3-size: 1.25rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
    padding: var(--spacing-sm);
  }
  
  .media-item {
    flex-direction: column;
    text-align: center;
  }
  
  .media-icon {
    margin: 0 auto var(--spacing-md);
  }
}

.mobile-menu-toggle{
  display: none;
}