/* ========= Core Variables and Reset ========= */
:root {
  /* Retro Neo-Brutalism Color Palette */
  --primary: #ff4d00; /* Vibrant Orange */
  --primary-dark: #cc3d00;
  --secondary: #1a75ff; /* Complementary Blue */
  --secondary-dark: #0055cc;
  --accent: #ffd100; /* Bright Yellow Accent */
  --accent-dark: #ccaf00;
  --black: #101010;
  --white: #ffffff;
  --light-gray: #f0f0f0;
  --mid-gray: #aaaaaa;
  --dark-gray: #333333;
  --danger: #ff2a6d;
  --success: #05d69e;
  
  /* Typography */
  --title-font: 'Montserrat', sans-serif;
  --body-font: 'Merriweather', serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  
  /* Borders & Shadows */
  --border-radius: 0.25rem;
  --border-radius-lg: 0.5rem;
  --border-width: 3px;
  --shadow-sm: 5px 5px 0px rgba(0, 0, 0, 0.8);
  --shadow-lg: 8px 8px 0px rgba(0, 0, 0, 0.8);
  
  /* Layout */
  --container-width: 1200px;
  --header-height: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

/* ========= Typography ========= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--title-font);
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  font-weight: 900;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

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

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

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

.section-title {
  text-align: center;
  font-size: 2.75rem;
  margin-bottom: var(--space-xl);
  position: relative;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title:after {
  content: '';
  display: block;
  width: 100px;
  height: 5px;
  background-color: var(--primary);
  margin: 10px auto 0;
}

/* ========= Layout & Containers ========= */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

section {
  padding: var(--space-xl) 0;
  position: relative;
}

/* ========= Header & Navigation ========= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

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

.logo a {
  display: block;
  text-decoration: none;
}

.logo h1 {
  font-size: 2rem;
  color: var(--black);
  margin: 0;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: var(--space-lg);
}

.nav-links a {
  font-family: var(--title-font);
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  padding: 0.5rem 0;
  position: relative;
}

.nav-links a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--black);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* ========= Buttons ========= */
.btn, button, input[type="submit"] {
  display: inline-block;
  font-family: var(--title-font);
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border: var(--border-width) solid var(--black);
  border-radius: var(--border-radius);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  margin: var(--space-sm);
}

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

.btn:active, button:active, input[type="submit"]:active {
  transform: translate(0, 0);
  box-shadow: none;
}

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

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

.btn-text {
  background: none;
  border: none;
  box-shadow: none;
  color: var(--primary);
  padding: 0;
  text-transform: none;
  letter-spacing: normal;
}

.btn-text:hover {
  box-shadow: none;
  text-decoration: underline;
  transform: none;
}

/* ========= Forms ========= */
.form-group {
  margin-bottom: var(--space-lg);
}

label {
  display: block;
  font-family: var(--title-font);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

input, select, textarea {
  width: 100%;
  padding: 0.75rem;
  border: var(--border-width) solid var(--black);
  border-radius: var(--border-radius);
  font-family: var(--body-font);
  font-size: 1rem;
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  box-shadow: var(--shadow-lg);
  transform: translate(-2px, -2px);
}

/* ========= Hero Section ========= */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
}

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: var(--space-md);
  color: var(--white);
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  color: var(--white);
  font-weight: 300;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: var(--space-lg);
  color: var(--white);
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ========= Stats Section ========= */
.stats-section {
  background-color: var(--white);
  padding: var(--space-xl) 0;
}

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

.stat-card {
  background-color: var(--light-gray);
  padding: var(--space-lg);
  border: var(--border-width) solid var(--black);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-card:hover {
  transform: translate(-5px, -5px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  font-family: var(--title-font);
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.stat-label {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background-color: var(--mid-gray);
  border-radius: 5px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background-color: var(--primary);
  border-radius: 5px;
}

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

/* ========= Courses/Projects Section ========= */
.courses-section {
  background-color: var(--light-gray);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
}

.card {
  background-color: var(--white);
  border: var(--border-width) solid var(--black);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  transform: translate(-5px, -5px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.card-content {
  padding: var(--space-lg);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  color: var(--black);
}

.card-content p {
  margin-bottom: var(--space-lg);
}

.course-details {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-bottom: var(--space-lg);
}

.course-details span {
  font-family: var(--title-font);
  font-weight: 700;
  color: var(--primary);
}

/* ========= Vision & Mission Sections ========= */
.vision-section, .mission-section {
  position: relative;
}

.vision-section {
  background-color: var(--white);
}

.mission-section {
  background-color: var(--light-gray);
}

.vision-content, .mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.vision-text, .mission-text {
  max-width: 500px;
}

.mission-text ul {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.mission-text li {
  margin-bottom: var(--space-md);
}

.vision-image, .mission-image {
  width: 100%;
  height: 300px;
  border: var(--border-width) solid var(--black);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.vision-image img, .mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========= Resources Section ========= */
.resources-section {
  background-color: var(--white);
}

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

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

.resource-card {
  background-color: var(--light-gray);
  padding: var(--space-lg);
  border: var(--border-width) solid var(--black);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translate(-5px, -5px);
  box-shadow: var(--shadow-lg);
}

.resource-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  color: var(--primary);
}

.resource-card ul {
  list-style: none;
}

.resource-card li {
  margin-bottom: var(--space-md);
  border-bottom: 1px solid var(--mid-gray);
  padding-bottom: var(--space-md);
}

.resource-card li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.resource-card a {
  font-weight: 700;
  color: var(--secondary);
}

/* ========= Team Section ========= */
.team-section {
  background-color: var(--light-gray);
}

.team-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

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

.team-role {
  font-family: var(--title-font);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========= Gallery Section ========= */
.gallery-section {
  background-color: var(--white);
}

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

.gallery-item {
  position: relative;
  border: var(--border-width) solid var(--black);
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 250px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-item:hover {
  transform: translate(-5px, -5px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--space-md);
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--white);
  font-weight: 700;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* ========= Case Studies Section ========= */
.case-studies-section {
  background-color: var(--light-gray);
}

.accordion-container {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: var(--space-md);
  border: var(--border-width) solid var(--black);
  border-radius: var(--border-radius);
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.accordion-header {
  padding: var(--space-lg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white);
  transition: all 0.3s ease;
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.25rem;
}

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

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 var(--space-lg);
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
  padding-bottom: var(--space-lg);
}

.case-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-lg);
  align-items: start;
}

.case-image {
  width: 100%;
  height: 200px;
  border-radius: var(--border-radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* ========= Blog Section ========= */
.blog-section {
  background-color: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
}

.blog-card {
  background-color: var(--light-gray);
  border: var(--border-width) solid var(--black);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blog-card:hover {
  transform: translate(-5px, -5px);
  box-shadow: var(--shadow-lg);
}

.blog-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

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

.blog-content {
  padding: var(--space-lg);
  width: 100%;
}

.blog-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.blog-date {
  font-size: 0.9rem;
  color: var(--mid-gray);
  margin-bottom: var(--space-md);
}

.blog-excerpt {
  margin-bottom: var(--space-lg);
}

/* ========= Community Section ========= */
.community-section {
  background-color: var(--light-gray);
}

.community-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.community-description {
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.community-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.benefit-item {
  background-color: var(--white);
  padding: var(--space-lg);
  border: var(--border-width) solid var(--black);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-align: center;
}

.benefit-item:hover {
  transform: translate(-5px, -5px);
  box-shadow: var(--shadow-lg);
}

.benefit-item h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.community-image {
  width: 100%;
  max-width: 800px;
  height: 400px;
  border: var(--border-width) solid var(--black);
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.timeline {
  width: 100%;
  max-width: 800px;
}

.timeline h3 {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.timeline-container {
  position: relative;
}

.timeline-container:before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  height: 100%;
  width: 4px;
  background-color: var(--primary);
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: var(--space-lg);
}

.timeline-date {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--title-font);
  font-weight: 700;
  border: var(--border-width) solid var(--black);
  border-radius: var(--border-radius);
  z-index: 1;
}

.timeline-content {
  background-color: var(--white);
  padding: var(--space-lg);
  border: var(--border-width) solid var(--black);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translate(-5px, -5px);
  box-shadow: var(--shadow-lg);
}

.timeline-content h4 {
  margin-bottom: var(--space-sm);
}

/* ========= Contact Section ========= */
.contact-section {
  background-color: var(--white);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info h3 {
  margin-bottom: var(--space-lg);
}

.contact-details {
  margin-top: var(--space-xl);
}

.contact-item {
  margin-bottom: var(--space-lg);
}

.contact-item strong {
  display: block;
  font-family: var(--title-font);
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--primary);
}

/* ========= Footer ========= */
.footer {
  background-color: var(--black);
  color: var(--white);
  padding: var(--space-xl) 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-logo h2 {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.footer-column h3 {
  color: var(--white);
  margin-bottom: var(--space-lg);
  font-size: 1.25rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: var(--space-md);
}

.footer-column a {
  color: var(--mid-gray);
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: var(--white);
  text-decoration: none;
}

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

.social-links a {
  display: inline-block;
  margin-right: var(--space-md);
  color: var(--mid-gray);
  font-weight: 700;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: var(--primary);
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--dark-gray);
}

.footer-bottom p {
  margin-bottom: var(--space-sm);
  font-size: 0.9rem;
  color: var(--mid-gray);
}

/* ========= Success Page ========= */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.success-content {
  max-width: 600px;
}

.success-icon {
  font-size: 5rem;
  color: var(--success);
  margin-bottom: var(--space-lg);
}

/* ========= Terms & Privacy Pages ========= */
.terms-page, .privacy-page {
  padding-top: calc(var(--header-height) + 100px);
}

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

.terms-content h2, .privacy-content h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-lg);
  font-size: 2rem;
}

.terms-content h3, .privacy-content h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
}

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

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

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

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

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

.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

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

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

@keyframes particle {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(var(--x, 100px), var(--y, 100px));
    opacity: 0;
  }
}

/* ========= Responsive Styles ========= */
@media (max-width: 1024px) {
  .vision-content, .mission-content, .contact-container {
    grid-template-columns: 1fr;
  }
  
  .vision-text, .mission-text {
    max-width: none;
    order: 1;
  }
  
  .vision-image, .mission-image {
    order: 0;
    margin-bottom: var(--space-lg);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-logo {
    text-align: center;
    margin-bottom: var(--space-lg);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    transition: height 0.3s ease;
    z-index: 1000;
  }
  
  .nav-links.active {
    height: calc(100vh - var(--header-height));
    padding: var(--space-lg) 0;
  }
  
  .nav-links li {
    margin: var(--space-md) 0;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .case-content {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .btn, button, input[type="submit"] {
    width: 100%;
    margin: var(--space-sm) 0;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
}

/* ========= JavaScript Support Classes ========= */
.js-accordion-active .accordion-content {
  max-height: 1000px;
  padding-bottom: var(--space-lg);
}

.js-accordion-active .accordion-icon {
  transform: rotate(45deg);
}

.js-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-visible {
  opacity: 1;
  transform: translateY(0);
}
html,body{
  overflow-x: hidden;
}