/* ===== VARIABLES ===== */
:root {
  /* Color palette */
  --primary: #ff5722;
  --primary-dark: #e64a19;
  --secondary: #2196f3;
  --secondary-dark: #1976d2;
  --accent: #9c27b0;
  --accent-dark: #7b1fa2;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary), #ff9800);
  --gradient-secondary: linear-gradient(135deg, var(--secondary), #03a9f4);
  --gradient-accent: linear-gradient(135deg, var(--accent), #673ab7);
  --gradient-dark: linear-gradient(135deg, #333, #111);
  
  /* Neutral colors */
  --text-dark: #222222;
  --text-light: #ffffff;
  --text-muted: #777777;
  --background-light: #ffffff;
  --background-off: #f9f9f9;
  --background-dark: #333333;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
  
  /* Borders */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  --shadow-brutal: 5px 5px 0px rgba(0, 0, 0, 0.8);
  
  /* Typography */
  --font-heading: 'Archivo Black', sans-serif;
  --font-body: 'Roboto', sans-serif;
  
  /* Container */
  --container-width: 1200px;
  
  /* Z-index */
  --z-header: 1000;
  --z-modal: 2000;
  --z-toast: 3000;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
  overflow-x: hidden;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
  color: var(--text-dark);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

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

ul, ol {
  margin-bottom: var(--spacing-sm);
  padding-left: var(--spacing-md);
}

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

section {
  padding: var(--spacing-lg) 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  position: relative;
  z-index: 1;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-sm);
}

/* ===== BUTTONS ===== */
.btn,
button,
input[type="submit"] {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: var(--border-radius-md);
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}

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

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

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-light);
}

.btn-primary:hover {
  color: var(--text-light);
  background: linear-gradient(135deg, var(--primary-dark), #f57c00);
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: var(--text-light);
}

.btn-secondary:hover {
  color: var(--text-light);
  background: linear-gradient(135deg, var(--secondary-dark), #0288d1);
}

.btn-accent {
  background: var(--gradient-accent);
  color: var(--text-light);
}

.btn-accent:hover {
  color: var(--text-light);
  background: linear-gradient(135deg, var(--accent-dark), #5e35b1);
}

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

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

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-header);
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

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

.logo a {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo a:hover {
  color: var(--primary);
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav ul li {
  margin-left: var(--spacing-md);
}

.desktop-nav ul li a {
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-dark);
  text-transform: uppercase;
  padding: 0.5rem 0;
  position: relative;
}

.desktop-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.desktop-nav ul li a:hover::after {
  width: 100%;
}

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

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text-dark);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: var(--background-light);
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
  box-shadow: var(--shadow-md);
  z-index: var(--z-header);
}

.mobile-nav.active {
  height: auto;
  padding: var(--spacing-md) 0;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav ul li {
  padding: 0.8rem var(--spacing-md);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-nav ul li:last-child {
  border-bottom: none;
}

.mobile-nav ul li a {
  display: block;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-dark);
  text-transform: uppercase;
}

/* ===== HERO SECTION ===== */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 0;
  padding-top: 70px;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-lg);
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-lg);
  color: var(--text-light);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease 0.2s both;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background-color: var(--background-light);
}

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

.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-brutal);
  transition: transform 0.3s ease;
  margin: 0 auto;
}

.about-image img:hover {
  transform: scale(1.02) rotate(1deg);
}

.about-text {
  flex: 2;
  min-width: 300px;
}

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

/* ===== MISSION SECTION ===== */
.mission-section {
  background: var(--background-off);
  position: relative;
  overflow: hidden;
}

.mission-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0.05;
  z-index: 0;
}

.mission-content {
  position: relative;
  z-index: 1;
}

.mission-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--spacing-lg);
}

.mission-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.mission-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-brutal);
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
  margin: 0 auto;
}

.mission-image img:hover {
  transform: rotate(0) scale(1.05);
}

.mission-text {
  flex: 2;
  min-width: 300px;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background-color: var(--background-light);
}

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

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

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

.card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  text-align: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  margin: 0 auto;
}

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

.card-content {
  padding: var(--spacing-md);
  text-align: center;
  flex: 1;
}

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

/* ===== PROCESS SECTION ===== */
.process-section {
  background: var(--background-off);
  position: relative;
}

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

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  justify-content: flex-start;
  padding-bottom: var(--spacing-lg);
  position: relative;
}

.timeline-item:nth-child(even) {
  justify-content: flex-end;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: var(--shadow-sm);
  z-index: 1;
}

.timeline-image {
  width: 300px;
  height: 200px;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-brutal);
  margin-right: var(--spacing-lg);
  transition: transform 0.3s ease;
  text-align: center;
}

.timeline-item:nth-child(even) .timeline-image {
  margin-right: 0;
  margin-left: var(--spacing-lg);
  order: 2;
}

.timeline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  margin: 0 auto;
}

.timeline-image:hover {
  transform: scale(1.05) rotate(2deg);
}

.timeline-content {
  width: calc(50% - 120px);
  padding: var(--spacing-md);
  background-color: var(--background-light);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

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

/* ===== RESOURCES SECTION ===== */
.resources-section {
  background-color: var(--background-light);
}

.resources-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

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

.resource-card {
  padding: var(--spacing-md);
  background: var(--background-light);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  height: 100%;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

.resource-card h3 {
  color: var(--secondary);
  margin-bottom: var(--spacing-sm);
  font-size: 1.2rem;
}

.resource-card p {
  color: var(--text-dark);
  margin-bottom: 0;
}

/* ===== HISTORY SECTION ===== */
.history-section {
  background: linear-gradient(135deg, rgba(255, 87, 34, 0.05), rgba(255, 152, 0, 0.05));
}

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

.history-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.history-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-brutal);
  transform: rotate(2deg);
  transition: transform 0.3s ease;
  margin: 0 auto;
}

.history-image img:hover {
  transform: rotate(-1deg) scale(1.03);
}

.history-text {
  flex: 2;
  min-width: 300px;
}

/* ===== AWARDS SECTION ===== */
.awards-section {
  background-color: var(--background-light);
}

.awards-slider {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.award {
  width: 250px;
  padding: var(--spacing-md);
  background-color: var(--background-light);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform 0.3s ease;
}

.award:hover {
  transform: translateY(-10px) rotate(3deg);
}

.award img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto var(--spacing-sm);
  border: 5px solid var(--primary);
}

.award h3 {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-xs);
  color: var(--primary);
}

.award p {
  font-size: 0.9rem;
  color: var(--text-dark);
}

/* ===== CAREERS SECTION ===== */
.careers-section {
  background: var(--background-off);
  position: relative;
}

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

.careers-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.careers-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-brutal);
  transition: transform 0.3s ease;
  margin: 0 auto;
}

.careers-image img:hover {
  transform: scale(1.05) rotate(-2deg);
}

.careers-text {
  flex: 2;
  min-width: 300px;
}

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

.careers-text ul {
  margin-bottom: var(--spacing-md);
}

.careers-text li {
  margin-bottom: var(--spacing-xs);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background-color: var(--background-light);
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

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

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

.info-item strong {
  display: block;
  margin-bottom: var(--spacing-xs);
  color: var(--text-dark);
  font-weight: 700;
}

.contact-image {
  margin-top: var(--spacing-md);
  text-align: center;
}

.contact-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-brutal);
  margin: 0 auto;
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #eee;
  border-radius: var(--border-radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.checkbox-group input {
  width: auto;
}

.checkbox-group label {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gradient-dark);
  color: var(--text-light);
  padding: var(--spacing-lg) 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo h2 {
  color: var(--text-light);
  margin-bottom: var(--spacing-xs);
  font-size: 1.8rem;
}

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

.footer-links {
  flex: 1;
  min-width: 200px;
}

.footer-links h3,
.footer-social h3,
.footer-newsletter h3 {
  color: var(--text-light);
  margin-bottom: var(--spacing-sm);
  font-size: 1.2rem;
}

.footer-links ul,
.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li,
.footer-social ul li {
  margin-bottom: var(--spacing-xs);
}

.footer-links ul li a,
.footer-social ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-links ul li a:hover,
.footer-social ul li a:hover {
  color: var(--text-light);
}

.footer-social {
  flex: 1;
  min-width: 200px;
}

.footer-newsletter {
  flex: 2;
  min-width: 300px;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-sm);
}

.footer-newsletter form {
  display: flex;
  gap: var(--spacing-xs);
}

.footer-newsletter input {
  flex: 1;
  padding: 0.8rem;
  border: none;
  border-radius: var(--border-radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

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

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

/* ===== SUCCESS PAGE ===== */
.success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: var(--spacing-lg);
  background: linear-gradient(135deg, rgba(255, 87, 34, 0.05), rgba(255, 152, 0, 0.05));
}

.success-content {
  max-width: 600px;
  padding: var(--spacing-lg);
  background-color: var(--background-light);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

/* ===== PRIVACY & TERMS PAGES ===== */
.page-content {
  padding-top: 100px;
  padding-bottom: var(--spacing-lg);
}

.page-content h1 {
  margin-bottom: var(--spacing-lg);
  color: var(--primary);
}

.page-content h2 {
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  color: var(--secondary);
}

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

.page-content ul {
  margin-bottom: var(--spacing-md);
}

.page-content ul li {
  margin-bottom: var(--spacing-xs);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 1s ease;
}

.fade-in-up {
  animation: fadeInUp 1s ease;
}

.scale-in {
  animation: scaleIn 1s ease;
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    justify-content: flex-start !important;
    padding-left: 70px;
  }
  
  .timeline-item::before {
    left: 30px;
  }
  
  .timeline-image {
    width: 200px;
    height: 150px;
    margin-right: var(--spacing-md) !important;
    margin-left: 0 !important;
  }
  
  .timeline-item:nth-child(even) .timeline-image {
    order: 0;
  }
  
  .timeline-content {
    width: calc(100% - 200px - var(--spacing-md));
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .about-content,
  .mission-grid,
  .history-content,
  .careers-content,
  .contact-content {
    flex-direction: column;
  }
  
  .about-image,
  .mission-image,
  .history-image,
  .careers-image,
  .contact-info,
  .contact-form {
    min-width: 100%;
  }
  
  .timeline-item {
    flex-direction: column;
  }
  
  .timeline-image {
    width: 100%;
    margin-bottom: var(--spacing-sm);
  }
  
  .timeline-content {
    width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .footer-logo,
  .footer-links,
  .footer-social,
  .footer-newsletter {
    min-width: 100%;
  }
  
  .footer-newsletter form {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .btn,
  button,
  input[type="submit"] {
    padding: 0.7rem 1.4rem;
    font-size: 0.8rem;
  }
}
html,body{
  overflow-x: hidden;
}