/* ============================================
   NLA - Newcastle Law Academy Stylesheet
   ============================================ */

/* === CSS Variables === */
:root {
  --primary: #2e3192;
  --primary-dark: #242773;
  --primary-light: #3b3fa6;
  --secondary: #c9a227;
  --secondary-light: #d4b23a;
  --secondary-dark: #a88920;
  --background: #ffffff;
  --foreground: #1a1a1a;
  --muted: #f8f9fa;
  --muted-foreground: #6b7280;
  --border: #e5e7eb;
  --card: #ffffff;
  --card-foreground: #1a1a1a;
  --success: #10b981;
  --error: #ef4444;
  --warning: #f59e0b;

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);

  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  --transition: all 0.3s ease;
}

/* === Reset & Base === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.3;
  color: var(--foreground);
}

/* === Container === */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === Top Bar === */
.top-bar {
  background: var(--primary-dark);
  padding: 8px 0;
  font-size: 14px;
}

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

.top-bar-left {
  display: flex;
  gap: 24px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
}

.top-bar-item:hover {
  color: var(--secondary);
}

.top-bar-item svg {
  flex-shrink: 0;
}

.top-bar-right {
  display: flex;
  gap: 12px;
}

.social-link {
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
}

.social-link:hover {
  color: var(--secondary);
  transform: translateY(-2px);
}

/* === Header === */
.header {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--primary);
  transition: var(--transition);
}

.header.scrolled {
  top: 0;
  background: rgba(46, 49, 146, 0.98);
  box-shadow: var(--shadow-lg);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

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

.logo-icon svg {
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.logo-tagline {
  font-size: 11px;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 15px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: var(--foreground);
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu li a:hover {
  background: var(--muted);
  color: var(--primary);
}

.nav-cta {
  margin-left: 16px;
}

/* === Mobile Toggle === */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

.btn-secondary:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

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

.btn-outline-light {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

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

.btn-lg {
  padding: 10px 32px;
  font-size: 16px;
}

/* === Hero Section === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding-top: 100px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/hero-pattern.svg") repeat;
  opacity: 0.05;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(201, 162, 39, 0.2);
  color: var(--secondary);
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 50px;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-title span {
  color: var(--secondary);
}

.hero-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  padding-bottom: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.hero-stat-value {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}

.hero-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}
/* === Page Header === */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 160px 0 80px;
  text-align: center;
}

.page-header-title {
  font-size: 48px;
  color: white;
  margin-bottom: 16px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

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

.breadcrumb span {
  color: var(--secondary);
}

/* === Section Styles === */
.section {
  padding: 100px 0;
}

.section-muted {
  background: var(--muted);
}

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(46, 49, 146, 0.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-dark .section-badge {
  background: rgba(201, 162, 39, 0.2);
  color: var(--secondary);
}

.section-title {
  font-size: 42px;
  margin-bottom: 16px;
}

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

.section-text {
  font-size: 18px;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.section-dark .section-text {
  color: rgba(255, 255, 255, 0.8);
}

/* === Stats Section === */
.stats {
  background: var(--primary);
  padding: 50px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
  padding: 24px;
}

.stat-icon {
  width: 60px;
  height: 100%;
  margin: 0 auto;
  background: rgba(201, 162, 39, 0.2);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
}

.stat-value {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.stat-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
}

/* === Features Grid === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(46, 49, 146, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 24px;
}

.feature-title {
  font-size: 22px;
  margin-bottom: 12px;
}

.feature-text {
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* === Course Cards === */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.course-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.course-image {
  height: 200px;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

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

.course-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  background: var(--secondary);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 600;
  border-radius: 50px;
}

.course-content {
  padding: 32px;
}

.course-title {
  font-size: 24px;
  margin-bottom: 12px;
}

.course-text {
  color: var(--muted-foreground);
  margin-bottom: 24px;
  line-height: 1.7;
}

.course-meta {
  display: flex;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted-foreground);
}

.course-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* === About Content === */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about-text h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

.about-text p {
  color: var(--muted-foreground);
  margin-bottom: 16px;
  line-height: 1.8;
}

/* === Timeline === */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -34px;
  top: 0;
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: var(--shadow);
}

.timeline-year {
  display: inline-block;
  padding: 4px 12px;
  background: var(--secondary);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 12px;
}

.timeline-title {
  font-size: 20px;
  margin-bottom: 8px;
}

.timeline-text {
  color: var(--muted-foreground);
}

/* === Team Grid === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.team-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

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

.team-image {
  height: 280px;
  overflow: hidden;
}

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

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

.team-content {
  padding: 24px;
}

.team-name {
  font-size: 20px;
  margin-bottom: 4px;
}

.team-role {
  color: var(--secondary-dark);
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 8px;
}

.team-title {
  color: var(--muted-foreground);
  font-size: 13px;
}

/* === Notices === */
.notices-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.notice-card {
  display: flex;
  gap: 24px;
  background: white;
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.notice-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
}

.notice-date {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.notice-day {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.notice-month {
  font-size: 12px;
  text-transform: uppercase;
}

.notice-content {
  flex: 1;
}

.notice-badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 8px;
}

.notice-badge.important {
  background: rgba(239, 68, 68, 0.1);
  color: var(--error);
}

.notice-badge.general {
  background: rgba(46, 49, 146, 0.1);
  color: var(--primary);
}

.notice-badge.exam {
  background: rgba(245, 158, 11, 0.1);
  color: var(--warning);
}

.notice-title {
  font-size: 20px;
  margin-bottom: 8px;
}

.notice-text {
  color: var(--muted-foreground);
  font-size: 15px;
}

/* === Contact Form === */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
}

.contact-info-icon {
  width: 56px;
  height: 56px;
  background: rgba(46, 49, 146, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-info-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-text {
  color: var(--muted-foreground);
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--foreground);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(46, 49, 146, 0.1);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* === CTA Section === */
.cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 100px 0;
  text-align: center;
}

.cta-title {
  font-size: 42px;
  color: white;
  margin-bottom: 16px;
}

.cta-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* === Footer === */
.footer {
  background: var(--primary-dark);
  color: white;
}

.footer-main {
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo .logo-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.footer-logo .logo-tagline {
  font-size: 10px;
  color: var(--secondary);
}

.footer-about {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--secondary);
  color: var(--primary-dark);
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 24px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-contact svg {
  flex-shrink: 0;
  color: var(--secondary);
  margin-top: 2px;
}

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

.partners-title {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

.partners-logos img {
  height: 50px;
  opacity: 0.8;
  transition: var(--transition);
}

.partners-logos img:hover {
  opacity: 1;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

/* === Animations === */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Responsive === */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    align-items: flex-start;
  }

  .hero-image {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid,
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar-left {
    flex-direction: column;
    gap: 8px;
  }

  .top-bar-content {
    display: flex;
    flex-direction: row;
    gap: 12px;
  }

  .header {
    top: 76px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-xl);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    background: rgba(0, 0, 0, 0.1);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 8px;
    margin-left: 16px;
    display: none;
  }

  .nav-dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-menu li a {
    border-bottom: none;
    color: rgba(255, 255, 255, 0.8);
  }

  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    padding-top: 90px;
    min-height: auto;
    padding-bottom: 80px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .page-header {
    padding: 140px 0 60px;
  }

  .page-header-title {
    font-size: 32px;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .stats-grid,
  .features-grid,
  .courses-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-title {
    font-size: 28px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .logo-name {
    font-size: 16px;
  }

  .logo-tagline {
    font-size: 9px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .notice-card {
    flex-direction: column;
  }

  .notice-date {
    width: 100%;
    flex-direction: row;
    gap: 8px;
    height: auto;
    padding: 12px;
  }
}
