/* ============= ОСНОВНЫЕ ПЕРЕМЕННЫЕ И СБРОС ============= */
:root {
  /* Основные цвета */
  --primary-color: #0e54b5;
  --primary-dark: #094396;
  --primary-light: #2e75d9;
  --secondary-color: #ff5722;
  --secondary-dark: #e64a19;
  --secondary-light: #ff7e55;
  
  /* Нейтральные цвета */
  --dark: #222222;
  --dark-medium: #333333;
  --medium: #777777;
  --light-medium: #cccccc;
  --light: #f8f8f8;
  --white: #ffffff;
  
  /* Градиенты */
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, #2b9df4 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, #ffa07a 100%);
  --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--dark-medium) 100%);
  --gradient-overlay: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
  
  /* Тени */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
  --shadow-neo: 5px 5px 0px var(--dark);
  
  /* Радиусы */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  
  /* Шрифты */
  --font-heading: 'Cairo', 'Tajawal', sans-serif;
  --font-body: 'Tajawal', 'Cairo', sans-serif;
  
  /* Размеры шрифтов */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  
  /* Анимации */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: cubic-bezier(0.68, -0.55, 0.27, 1.55);
  
  /* Размеры и отступы */
  --container-width: 1200px;
  --header-height: 80px;
  --section-padding: 80px 0;
  --card-padding: 25px;
}

/* ============= БАЗОВЫЕ СТИЛИ ============= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

h1 {
  font-size: var(--text-5xl);
}

h2 {
  font-size: var(--text-4xl);
}

h3 {
  font-size: var(--text-3xl);
}

h4 {
  font-size: var(--text-2xl);
}

h5 {
  font-size: var(--text-xl);
}

h6 {
  font-size: var(--text-lg);
}

p {
  margin-bottom: 1.5rem;
  font-size: var(--text-base);
}

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

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

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

ul, ol {
  padding-right: 1.5rem;
  margin-bottom: 1.5rem;
}

/* ============= УТИЛИТЫ ============= */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

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

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--medium);
  font-size: var(--text-lg);
}

/* ============= КНОПКИ ============= */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-medium);
  border: none;
  font-size: var(--text-base);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  z-index: -1;
  transition: width 0.3s var(--transition-bounce);
}

.btn:hover::before {
  width: 100%;
  right: auto;
  left: 0;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

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

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

button, input[type='submit'] {
  font-family: var(--font-body);
  cursor: pointer;
}

/* ============= HEADER & NAVIGATION ============= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
  height: var(--header-height);
}

.site-header.scrolled {
  background: var(--gradient-dark);
  box-shadow: var(--shadow-md);
  height: 70px;
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
}

.main-nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 2rem;
}

.main-nav a {
  color: var(--dark);
  font-weight: 600;
  font-size: var(--text-base);
  position: relative;
  padding: 5px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-medium);
}

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

.scrolled .main-nav a {
  color: var(--white);
}

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

.hamburger-menu span {
  width: 100%;
  height: 3px;
  background-color: var(--dark);
  border-radius: 3px;
  transition: all var(--transition-medium);
}

.scrolled .hamburger-menu span {
  background-color: var(--white);
}

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

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

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-overlay);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: var(--text-5xl);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  color: var(--white);
  font-size: var(--text-xl);
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

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

.about-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.about-image {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-neo);
  transform: rotate(-2deg);
  transition: transform var(--transition-medium) var(--transition-bounce);
}

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

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

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

.about-text {
  flex: 1;
}

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

.about-features {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.feature {
  text-align: center;
  flex: 1;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
  color: var(--primary-color);
}

.feature h4 {
  font-size: var(--text-lg);
  margin-bottom: 0.5rem;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

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

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

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

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

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

.card-content {
  padding: var(--card-padding);
  text-align: center;
}

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

.card-content .btn {
  margin-top: 1rem;
}

/* ============= ACCOLADES SECTION ============= */
.accolades-section {
  padding: var(--section-padding);
  background: var(--gradient-primary);
  color: var(--white);
}

.accolades-section .section-title {
  color: var(--white);
}

.accolades-section .section-title::after {
  background: var(--white);
}

.accolades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.accolade-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: var(--card-padding);
  text-align: center;
  transition: transform var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.accolade-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
}

.accolade-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
}

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

.accolade-card h3 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: var(--text-xl);
}

.accolade-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-base);
}

/* ============= TEAM SECTION ============= */
.team-section {
  padding: var(--section-padding);
  background-color: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-section .card {
  border: 3px solid var(--primary-light);
  box-shadow: var(--shadow-neo);
}

.team-section .card-image {
  height: 350px;
}

.team-section .card-content {
  padding-top: 1.5rem;
}

.position {
  color: var(--medium);
  font-style: italic;
  margin-bottom: 1rem;
}

/* ============= BEHIND THE SCENES SECTION ============= */
.behind-scenes-section {
  padding: var(--section-padding);
  background-color: var(--light);
}

.scenes-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

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

.scenes-image img {
  width: 100%;
  height: auto;
  transition: transform var(--transition-slow);
}

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

.scenes-text {
  flex: 1;
}

.scenes-text h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

/* ============= RESOURCES SECTION ============= */
.resources-section {
  padding: var(--section-padding);
  background: var(--gradient-secondary);
  color: var(--white);
}

.resources-section .section-title,
.resources-section .section-intro {
  color: var(--white);
}

.resources-section .section-title::after {
  background: var(--white);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.resource-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: var(--card-padding);
  transition: transform var(--transition-medium);
  text-align: center;
}

.resource-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
}

.resource-card h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.resource-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.resource-link {
  display: inline-block;
  color: var(--white);
  font-weight: 600;
  position: relative;
  padding-bottom: 3px;
}

.resource-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: width var(--transition-medium);
}

.resource-link:hover::after {
  width: 100%;
}

/* ============= FAQ SECTION ============= */
.faq-section {
  padding: var(--section-padding);
  background-color: var(--white);
}

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

.faq-item {
  margin-bottom: 1.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--light);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--light);
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: rgba(14, 84, 181, 0.05);
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: var(--text-lg);
  flex: 1;
}

.toggle-icon {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform var(--transition-medium) var(--transition-bounce);
}

.faq-item.active .toggle-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-medium);
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

/* ============= COMMUNITY SECTION ============= */
.community-section {
  padding: var(--section-padding);
  background-color: var(--light);
}

.community-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

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

.community-image img {
  width: 100%;
  height: auto;
  transition: transform var(--transition-slow);
}

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

.community-text {
  flex: 1;
}

.community-text h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.community-text .btn {
  margin-top: 1.5rem;
}

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

.contact-content {
  display: flex;
  gap: 4rem;
}

.contact-form-container,
.contact-info {
  flex: 1;
}

.contact-form-container h3,
.contact-info h3 {
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark-medium);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--light-medium);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  transition: border var(--transition-fast);
}

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

.form-switch {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.form-switch input[type="checkbox"] {
  width: auto;
  margin-right: 0.5rem;
}

.form-switch label {
  margin-bottom: 0;
  cursor: pointer;
}

.info-item {
  display: flex;
  margin-bottom: 2rem;
}

.info-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-left: 1.5rem;
}

.info-text h4 {
  margin-bottom: 0.5rem;
  color: var(--dark-medium);
}

.info-text p {
  margin-bottom: 0.5rem;
  color: var(--medium);
}

.map-container {
  margin-top: 2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ============= FOOTER ============= */
.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 70px 0 30px;
}

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

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo img {
  margin-bottom: 1.5rem;
  height: 60px;
  width: auto;
}

.footer-links h3,
.footer-newsletter h3,
.footer-social h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: var(--text-xl);
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--light-medium);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
}

.newsletter-form {
  display: flex;
  margin-top: 1.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  font-family: var(--font-body);
}

.newsletter-form button {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 0 20px;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-links a {
  color: var(--light-medium);
  font-size: var(--text-base);
  transition: color var(--transition-fast);
}

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

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

.footer-bottom p {
  margin-bottom: 0;
  color: var(--light-medium);
  font-size: var(--text-sm);
}

/* ============= SUCCESS PAGE ============= */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  background: var(--light);
}

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

.success-icon {
  font-size: 5rem;
  color: #4CAF50;
  margin-bottom: 2rem;
}

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

.success-content p {
  margin-bottom: 2rem;
}

/* ============= PRIVACY & TERMS PAGES ============= */
.page-content {
  padding-top: 120px;
  padding-bottom: 80px;
}

.page-content .container {
  max-width: 800px;
}

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

.page-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-size: var(--text-2xl);
  color: var(--primary-color);
}

.page-content p {
  margin-bottom: 1.5rem;
}

.page-content ul {
  margin-bottom: 2rem;
}

.page-content li {
  margin-bottom: 0.5rem;
}

/* ============= COOKIE CONSENT ============= */
#cookie-consent {
  background: var(--dark);
  color: var(--white);
  padding: 20px;
  font-size: var(--text-sm);
}

#cookie-consent p {
  margin-bottom: 15px;
}

#accept-cookies {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition-fast);
}

#accept-cookies:hover {
  background: var(--primary-dark);
}

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

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

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-20px); }
  60% { transform: translateY(-10px); }
}

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

.slide-up {
  animation: slideUp 0.8s var(--transition-bounce);
}

.slide-in {
  animation: slideIn 0.8s var(--transition-bounce);
}

.bounce {
  animation: bounce 2s;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 1024px) {
  :root {
    --section-padding: 60px 0;
  }
  
  h1 {
    font-size: calc(var(--text-5xl) * 0.9);
  }
  
  h2 {
    font-size: calc(var(--text-4xl) * 0.9);
  }
  
  .about-content,
  .scenes-content,
  .community-content,
  .contact-content {
    flex-direction: column;
    gap: 3rem;
  }
  
  .about-image,
  .scenes-image,
  .community-image {
    transform: rotate(0);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 50px 0;
    --card-padding: 20px;
  }
  
  h1 {
    font-size: calc(var(--text-5xl) * 0.8);
  }
  
  h2 {
    font-size: calc(var(--text-4xl) * 0.8);
  }
  
  .hero-content h1 {
    font-size: var(--text-4xl);
  }
  
  .hero-content p {
    font-size: var(--text-lg);
  }
  
  .hamburger-menu {
    display: flex;
  }
  
  .main-nav {
    position: absolute;
    top: var(--header-height);
    right: 0;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
  }
  
  .main-nav.active {
    max-height: 500px;
  }
  
  .main-nav ul {
    flex-direction: column;
    padding: 20px;
    gap: 1rem;
  }
  
  .scrolled .main-nav {
    background: var(--dark);
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .accolades-grid,
  .resources-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 480px) {
  :root {
    --text-5xl: 2.5rem;
    --text-4xl: 2rem;
    --text-3xl: 1.75rem;
    --text-2xl: 1.5rem;
    --section-padding: 40px 0;
  }
  
  .about-features {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--radius-md);
    margin-bottom: 0.5rem;
  }
  
  .newsletter-form button {
    border-radius: var(--radius-md);
    width: 100%;
  }
}