@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --primary: #2D5F7C;
  --primary-dark: #1A3D52;
  --primary-light: #3A7CA5;
  --secondary: #E76F51;
  --secondary-dark: #C85A3E;
  --accent: #F4A261;
  --light: #FAFAF7;
  --dark: #1A1A2E;
  --text: #2C3E50;
  --text-light: #6B7B8D;
  --white: #FFFFFF;
  --border: #E0DDD5;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: 2.4rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 0.8rem; }

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--secondary); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
  background-color: transparent;
}

.site-header.scrolled {
  background-color: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.site-header.hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
}

.logo:hover { color: var(--accent); }

.main-nav ul {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
  width: 28px;
  height: 22px;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 9px; }
.menu-toggle span:nth-child(3) { top: 18px; }

.menu-toggle.active span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.97);
  z-index: 999;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  display: flex;
  opacity: 1;
}

.nav-overlay ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.nav-overlay a {
  color: var(--white);
  font-size: 1.4rem;
  font-family: var(--font-heading);
  font-weight: 600;
}

.nav-overlay a:hover { color: var(--accent); }

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 50%, #1e4a62 100%);
  overflow: hidden;
  padding-top: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 162, 97, 0.12), transparent 70%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -25%;
  left: -8%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 95, 124, 0.2), transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  color: var(--white);
  font-size: 2.6rem;
  margin-bottom: 1rem;
  line-height: 1.12;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  padding: 7rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 162, 97, 0.1), transparent 70%);
}

.page-hero h1 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 0.6rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  max-width: 530px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 0.78rem;
}

.breadcrumb a { color: rgba(255, 255, 255, 0.55); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: rgba(255, 255, 255, 0.35); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--secondary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--secondary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(231, 111, 81, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn-secondary {
  background: var(--primary);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
}

section {
  padding: 4rem 0;
}

.section-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 0.88rem;
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.intro-card {
  background: var(--white);
  padding: 1.8rem 1.4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid transparent;
}

.intro-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--secondary);
}

.intro-card i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
  display: block;
}

.intro-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.intro-card p {
  color: var(--text-light);
  font-size: 0.8rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.workshops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.workshop-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.workshop-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.workshop-card-badge {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  background: var(--accent);
  color: var(--dark);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

.workshop-card-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 1.4rem;
  position: relative;
}

.workshop-card:nth-child(2) .workshop-card-header {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}

.workshop-card:nth-child(3) .workshop-card-header {
  background: linear-gradient(135deg, #2a6b4a, #1d4d35);
}

.workshop-card-header i {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.25);
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
}

.workshop-card-header h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.workshop-card-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  margin-bottom: 0;
}

.workshop-card-body {
  padding: 1.4rem;
}

.workshop-card-body ul {
  margin-bottom: 1.2rem;
}

.workshop-card-body li {
  font-size: 0.78rem;
  color: var(--text-light);
  padding: 0.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.workshop-card-body li i {
  color: var(--secondary);
  font-size: 0.65rem;
}

.workshop-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.workshop-price .amount {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
}

.workshop-price .period {
  font-size: 0.72rem;
  color: var(--text-light);
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.method-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.step-number {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.step-content h3 {
  font-size: 0.92rem;
  margin-bottom: 0.3rem;
}

.step-content p {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 0;
}

.benefits-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 162, 97, 0.08), transparent 70%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.benefit-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.benefit-item i {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 0.8rem;
  display: block;
}

.benefit-item h3 {
  color: var(--white);
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
}

.benefit-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.76rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.cta-section {
  background: var(--secondary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.cta-section h2 {
  color: var(--white);
  font-size: 1.7rem;
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 2;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  max-width: 480px;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
}

.cta-section .btn {
  background: var(--white);
  color: var(--secondary);
  position: relative;
  z-index: 2;
}

.cta-section .btn:hover {
  background: var(--dark);
  color: var(--white);
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text .section-label {
  margin-bottom: 0.4rem;
}

.about-text h2 {
  margin-bottom: 0.8rem;
}

.about-text p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  text-align: center;
  padding: 1.6rem 1.2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
}

.value-card i {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 0.6rem;
  display: block;
}

.value-card h3 {
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
}

.value-card p {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.diff-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.4rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-left: 3px solid var(--secondary);
}

.diff-card i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.diff-card h4 {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.diff-card p {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.speaking-overview {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: start;
}

.speaking-text h2 {
  margin-bottom: 0.6rem;
}

.speaking-text p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

.speaking-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.speaking-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speaking-sidebar {
  background: var(--white);
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  height: fit-content;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
}

.sidebar-item:last-child {
  border-bottom: none;
}

.sidebar-item i {
  color: var(--secondary);
  font-size: 0.95rem;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}

.sidebar-item-text strong {
  display: block;
  font-size: 0.68rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.1rem;
}

.sidebar-item-text span {
  font-size: 0.8rem;
  color: var(--text);
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.topic-card {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1.2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.topic-card:hover {
  transform: translateY(-3px);
}

.topic-card i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.topic-card h4 {
  font-size: 0.88rem;
  margin-bottom: 0.2rem;
}

.topic-card p {
  font-size: 0.76rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.contact-section {
  background: var(--light);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-form-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 1.5rem;
  right: 1.5rem;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 4px 4px 0 0;
}

.contact-form-card h2 {
  font-size: 1.35rem;
  margin-bottom: 0.3rem;
}

.contact-form-card > p {
  color: var(--text-light);
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.55rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--light);
  color: var(--text);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.consent-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.consent-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.consent-group label {
  font-size: 0.7rem;
  color: var(--text-light);
  line-height: 1.5;
}

.consent-group a {
  color: var(--primary);
  text-decoration: underline;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-card {
  background: var(--white);
  padding: 1.3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform var(--transition);
}

.contact-info-card:hover {
  transform: translateX(4px);
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: var(--white);
  font-size: 0.95rem;
}

.contact-info-card h4 {
  font-size: 0.8rem;
  margin-bottom: 0.1rem;
}

.contact-info-card p {
  font-size: 0.76rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.contact-decor {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}

.contact-decor i {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.contact-decor h4 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.contact-decor p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  margin-bottom: 0;
}

.contact-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-section {
  padding: 0;
}

.map-container {
  width: 100%;
  height: 320px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  background: var(--dark);
  padding: 1.5rem 0 1rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-copy {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-copy span {
  color: var(--accent);
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--dark);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-popup.visible {
  transform: translateY(0);
}

.cookie-popup p {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
  line-height: 1.5;
}

.cookie-popup a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-popup button {
  flex-shrink: 0;
  padding: 0.45rem 1.1rem;
  background: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.73rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}

.cookie-popup button:hover {
  background: var(--secondary-dark);
}

.status-page {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  padding: 5rem 1.5rem 2rem;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
}

.status-content i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.status-content h1 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.status-content p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  max-width: 440px;
  margin: 0 auto 1.5rem;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.2rem 3rem;
}

.policy-content h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.policy-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.policy-content h3 {
  font-size: 1rem;
  margin: 1.2rem 0 0.4rem;
}

.policy-content p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.75;
}

.policy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-content li {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 0.3rem;
}

.policy-date {
  font-size: 0.73rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero {
    min-height: auto;
    padding: 6rem 0 3rem;
  }

  .hero-image {
    max-height: 300px;
  }

  .intro-grid,
  .workshops-grid,
  .benefits-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .method-steps,
  .diff-grid {
    grid-template-columns: 1fr;
  }

  .about-story {
    grid-template-columns: 1fr;
  }

  .speaking-overview {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  html { font-size: 14px; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .intro-grid,
  .workshops-grid,
  .benefits-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .topics-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .cookie-popup {
    flex-direction: column;
    text-align: center;
  }

  section {
    padding: 2.5rem 0;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  html { font-size: 13px; }

  .header-inner {
    padding: 0.7rem 1rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .page-hero h1 {
    font-size: 1.6rem;
  }

  .hero {
    padding: 5rem 0 2.5rem;
  }

  .page-hero {
    padding: 5.5rem 0 2rem;
  }

  .contact-form-card {
    padding: 1.2rem;
  }

  .status-content h1 {
    font-size: 1.6rem;
  }
}

@media (max-width: 320px) {
  html { font-size: 12px; }

  .container {
    padding: 0 0.8rem;
  }

  .header-inner {
    padding: 0.6rem 0.8rem;
  }

  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.78rem;
  }

  .logo {
    font-size: 1rem;
  }
}
