
    @import url('https://fonts.googleapis.com/css2?family=Almarai:wght@400;700&family=Poppins:wght@400;500;600;700&display=swap');

:root {
  /* COLOR STRATEGY: LIGHT - L5 COOL GRAY + INDIGO */
  
  /* Primary backgrounds */
  --color-bg-primary: #f8fafc;
  --color-bg-secondary: #e2e8f0;
  --color-bg-tertiary: #ffffff;
  --color-bg-card: #ffffff;
  
  /* Text colors - WCAG AA compliant */
  --color-text-primary: #0f172a;
  --color-text-secondary: #475569;
  --color-text-muted: #94a3b8;
  
  /* Accent colors */
  --color-primary: #4f46e5;
  --color-primary-hover: #4338ca;
  --color-secondary: #06b6d4;
  --color-accent-warm: #f59e0b;
  
  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Almarai', sans-serif;
  
  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  direction: rtl;
}

body {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: var(--space-md);
}

h4 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-lg);
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: var(--shadow-md);
  margin-bottom: 0 !important;
}

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

.btn-secondary {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  border: 2px solid var(--color-secondary);
}

.btn-secondary:hover {
  background: var(--color-secondary);
  color: #ffffff;
}

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

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

.btn-sm {
  padding: var(--space-xs) var(--space-md);
  font-size: 0.875rem;
}

.btn-lg {
  padding: var(--space-md) var(--space-xl);
  font-size: 1.125rem;
}

/* Cards */
.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.card-compact {
  padding: var(--space-md);
}

.card-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  object-fit: cover;
}

/* Grids */
.grid {
  display: grid;
  gap: var(--space-lg);
}

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

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Flexbox utilities */
.flex {
  display: flex;
  align-items: center;
}

.flex-col {
  flex-direction: column;
}

.flex-between {
  justify-content: space-between;
}

.flex-center {
  justify-content: center;
}

.flex-gap-sm {
  gap: var(--space-sm);
}

.flex-gap-md {
  gap: var(--space-md);
}

.flex-gap-lg {
  gap: var(--space-lg);
}

/* Sections */
section {
  padding: var(--space-3xl) 0;
}

section.compact {
  padding: var(--space-2xl) 0;
}

/* Headers & Navigation */
header {
  background: var(--color-bg-tertiary);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all var(--transition-fast);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

nav a {
  font-weight: 500;
  color: var(--color-text-primary);
  transition: color var(--transition-fast);
}

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

/* Badge */
.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-primary {
  background: rgba(79, 70, 229, 0.1);
  color: var(--color-primary);
}

.badge-secondary {
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-secondary);
}

.badge-accent {
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-accent-warm);
}

/* Features List */
.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
}

.feature-list li::before {
  content: '✓';
  flex-shrink: 0;
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 1.25rem;
}

/* Stats */
.stat {
  text-align: center;
  padding: var(--space-md);
}

.stat-number {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-weight: 500;
}

/* Forms */
input, textarea, select {
  width: 100%;
  padding: var(--space-sm);
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-text-primary);
  background: var(--color-bg-tertiary);
  transition: all var(--transition-fast);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: var(--color-text-primary);
}

.form-group {
  margin-bottom: var(--space-md);
}

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

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.animate-fade-in {
  animation: fadeIn var(--transition-base) ease-in;
}

.animate-slide-up {
  animation: slideInUp var(--transition-base) ease-out;
}

.animate-slide-right {
  animation: slideInRight var(--transition-base) ease-out;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

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

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

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

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

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

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

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

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

.pt-sm {
  padding-top: var(--space-sm);
}

.pt-md {
  padding-top: var(--space-md);
}

.pt-lg {
  padding-top: var(--space-lg);
}

.pb-sm {
  padding-bottom: var(--space-sm);
}

.pb-md {
  padding-bottom: var(--space-md);
}

.pb-lg {
  padding-bottom: var(--space-lg);
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

/* Responsive Typography */
@media (max-width: 768px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

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

  nav ul {
    gap: var(--space-md);
  }

  .container {
    padding: 0 var(--space-md);
  }
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Scroll behavior */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: var(--radius-md);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-hover);
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* Header Court Forge - Volleyball Training Center Header */

.header-court-forge {
  background: var(--color-bg-tertiary);
  box-shadow: var(--shadow-md);
  position: static;
  width: 100%;
  z-index: 1000;
  border-bottom: 3px solid var(--color-primary);
}

.header-court-forge-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: clamp(70px, 12vh, 90px);
  gap: clamp(1rem, 3vw, 2rem);
}

/* Brand/Logo Section */
.header-court-forge-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  gap: 0.75rem;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.header-court-forge-brand:hover {
  transform: scale(1.05);
}

.header-court-forge-logo-img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg-tertiary);
  font-weight: 700;
  font-size: 1.25rem;
}

.header-court-forge-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
}

/* Desktop Navigation */
.header-court-forge-desktop-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex: 1;
  margin-left: 2rem;
}

.header-court-forge-nav-link {
  font-family: var(--font-heading);
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 600;
  color: var(--color-text-primary);
  text-decoration: none;
  position: relative;
  transition: color var(--transition-fast);
  padding-bottom: 4px;
}

.header-court-forge-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-fast);
}

.header-court-forge-nav-link:hover {
  color: var(--color-primary);
}

.header-court-forge-nav-link:hover::after {
  width: 100%;
}

/* CTA Button */
.header-court-forge-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-bg-tertiary);
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.header-court-forge-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Mobile Toggle Button */
.header-court-forge-mobile-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 6px;
  flex-shrink: 0;
}

.header-court-forge-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.header-court-forge-mobile-toggle:hover span {
  background: var(--color-primary-hover);
}

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

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

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

/* Mobile Menu */
.header-court-forge-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-tertiary);
  z-index: 999;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
}

.header-court-forge-mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.header-court-forge-mobile-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 2px solid var(--color-bg-secondary);
  background: var(--color-bg-primary);
}

.header-court-forge-mobile-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
}

.header-court-forge-mobile-close {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
}

.header-court-forge-mobile-close i {
  font-size: 1.5rem;
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

.header-court-forge-mobile-close:hover i {
  color: var(--color-primary-hover);
}

/* Mobile Navigation Links */
.header-court-forge-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1rem 0;
}

.header-court-forge-mobile-link {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
  text-decoration: none;
  padding: 1rem 1.5rem;
  display: block;
  border-bottom: 1px solid var(--color-bg-secondary);
  transition: all var(--transition-fast);
}

.header-court-forge-mobile-link:hover {
  background: var(--color-bg-secondary);
  color: var(--color-primary);
  padding-right: 2rem;
}

/* Mobile CTA Button */
.header-court-forge-mobile-cta {
  display: block;
  margin: 1.5rem;
  padding: 1rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-bg-tertiary);
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  width: calc(100% - 3rem);
}

.header-court-forge-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Tablet Breakpoint - 768px */
@media (min-width: 768px) {
  .header-court-forge-container {
    height: clamp(75px, 12vh, 95px);
  }

  .header-court-forge-desktop-nav {
    display: flex;
  }

  .header-court-forge-cta-button {
    display: block;
  }

  .header-court-forge-mobile-toggle {
    display: none;
  }

  .header-court-forge-mobile-menu {
    display: none;
  }
}

/* Large Desktop Breakpoint - 1024px */
@media (min-width: 1024px) {
  .header-court-forge-container {
    height: 90px;
  }

  .header-court-forge-logo-text {
    font-size: 1.5rem;
  }

  .header-court-forge-nav-link {
    font-size: 1rem;
  }

  .header-court-forge-cta-button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .header-court-forge-brand,
  .header-court-forge-nav-link,
  .header-court-forge-nav-link::after,
  .header-court-forge-cta-button,
  .header-court-forge-mobile-toggle span,
  .header-court-forge-mobile-menu,
  .header-court-forge-mobile-link,
  .header-court-forge-mobile-cta {
    transition: none;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: more) {
  .header-court-forge {
    border-bottom-width: 4px;
  }

  .header-court-forge-nav-link {
    font-weight: 700;
  }

  .header-court-forge-cta-button {
    font-weight: 700;
    border: 2px solid var(--color-primary-hover);
  }
}

/* Print Styles */
@media print {
  .header-court-forge {
    position: static;
    box-shadow: none;
    border-bottom: 1px solid var(--color-bg-secondary);
  }

  .header-court-forge-mobile-toggle,
  .header-court-forge-mobile-menu {
    display: none;
  }
}



    .volleyball-arena {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.hero-section-index {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.hero-content-index {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.hero-text-block-index {
  flex: 1 1 50%;
  min-width: 280px;
}

.hero-title-index {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  color: #0f172a;
  margin-bottom: var(--space-md);
  line-height: 1.1;
  font-weight: 700;
}

.hero-subtitle-index {
  color: #475569;
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

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

.hero-image-block-index {
  flex: 1 1 50%;
  min-width: 300px;
}

.hero-image-index {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  justify-content: center;
  padding-top: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.stat-item-index {
  text-align: center;
  flex: 1 1 120px;
  min-width: 100px;
}

.stat-number-index {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #4f46e5;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-label-index {
  font-size: 0.875rem;
  color: #475569;
  font-weight: 500;
}

.hero-decoration-glow-index {
  position: absolute;
  top: -100px;
  right: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-decoration-blob-index {
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 280px;
  height: 280px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero-content-index {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .hero-text-block-index,
  .hero-image-block-index {
    flex: 1 1 100%;
  }

  .hero-buttons-index {
    flex-direction: column;
  }

  .hero-buttons-index .btn {
    width: 100%;
  }
}

.about-section-index {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.about-content-index {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.about-text-block-index {
  flex: 1 1 50%;
  min-width: 280px;
}

.about-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.about-description-index {
  color: #475569;
  font-size: clamp(0.9rem, 1vw, 1rem);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.feature-list-index {
  list-style: none;
  padding: 0;
}

.feature-list-index li {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1rem);
  align-items: flex-start;
}

.feature-list-index li::before {
  content: '✓';
  flex-shrink: 0;
  color: #06b6d4;
  font-weight: 800;
  font-size: 1.25rem;
  margin-top: 2px;
}

.about-image-block-index {
  flex: 1 1 50%;
  min-width: 300px;
}

.about-image-index {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.about-decoration-accent-index {
  position: absolute;
  top: 50%;
  right: -80px;
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .about-content-index {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .about-text-block-index,
  .about-image-block-index {
    flex: 1 1 100%;
  }
}

.process-section-index {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.process-header-index {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section-tag-index {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(79, 70, 229, 0.1);
  color: #4f46e5;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-md);
}

.process-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.process-subtitle-index {
  color: #475569;
  font-size: clamp(0.9rem, 1vw, 1rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.process-steps-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.process-step-index {
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-lg);
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.step-number-index {
  flex-shrink: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #4f46e5;
  line-height: 1;
  width: 60px;
}

.step-content-index {
  flex: 1;
}

.step-title-index {
  color: #0f172a;
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.step-text-index {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.6;
}

.process-decoration-line-index {
  position: absolute;
  top: 30%;
  left: -100px;
  width: 250px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.15), transparent);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .process-steps-index {
    flex-direction: column;
  }

  .process-step-index {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.features-section-index {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.features-header-index {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.features-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.features-subtitle-index {
  color: #475569;
  font-size: clamp(0.9rem, 1vw, 1rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.features-grid-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.feature-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-base);
}

.feature-card-index:hover {
  background: #ffffff;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card-icon-index {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(6, 182, 212, 0.1));
  border-radius: var(--radius-lg);
  margin: 0 auto clamp(0.75rem, 2vw, 1.5rem);
  font-size: 1.75rem;
  color: #4f46e5;
}

.card-title-index {
  color: #0f172a;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.card-text-index {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.6;
}

.features-decoration-mesh-index {
  position: absolute;
  top: 50%;
  right: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
  transform: translateY(-50%);
}

.features-decoration-orb-index {
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .features-grid-index {
    flex-direction: column;
    align-items: stretch;
  }

  .feature-card-index {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.testimonials-section-index {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.testimonials-header-index {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.testimonials-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.testimonials-subtitle-index {
  color: #475569;
  font-size: clamp(0.9rem, 1vw, 1rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.testimonials-grid-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-left: 4px solid #4f46e5;
}

.testimonial-quote-index {
  color: #475569;
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  margin: 0;
  padding: 0;
}

.testimonial-author-index {
  padding-top: var(--space-md);
  border-top: 1px solid #e2e8f0;
}

.author-name-index {
  color: #0f172a;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  font-size: 0.95rem;
}

.author-role-index {
  color: #94a3b8;
  font-size: 0.85rem;
}

.testimonials-decoration-accent-index {
  position: absolute;
  top: 50%;
  left: -100px;
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), transparent);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .testimonials-grid-index {
    flex-direction: column;
    align-items: stretch;
  }

  .testimonial-card-index {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.blog-section-index {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.blog-header-index {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.blog-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.blog-subtitle-index {
  color: #475569;
  font-size: clamp(0.9rem, 1vw, 1rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.blog-cards-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.blog-card-index {
  flex: 1 1 320px;
  max-width: 420px;
  background: #f8fafc;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.blog-image-wrapper-index {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

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

.blog-card-content-index {
  padding: clamp(1.5rem, 3vw, 2rem);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-title-index {
  color: #0f172a;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  margin-bottom: var(--space-sm);
  font-weight: 700;
  line-height: 1.4;
}

.blog-card-description-index {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
  flex: 1;
}

.blog-card-link-index {
  color: #4f46e5;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color var(--transition-fast);
  align-self: flex-start;
}

.blog-card-link-index:hover {
  color: #4338ca;
  text-decoration: underline;
}

.blog-cta-index {
  text-align: center;
  margin-top: clamp(1rem, 3vw, 2rem);
}

.blog-decoration-glow-index {
  position: absolute;
  bottom: -80px;
  right: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .blog-cards-index {
    flex-direction: column;
    align-items: stretch;
  }

  .blog-card-index {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.benefits-section-index {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.benefits-content-index {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.benefits-text-block-index {
  flex: 1 1 50%;
  min-width: 280px;
}

.benefits-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.benefits-description-index {
  color: #475569;
  font-size: clamp(0.9rem, 1vw, 1rem);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.benefits-list-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.benefit-item-index {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  align-items: flex-start;
}

.benefit-icon-index {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(79, 70, 229, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f46e5;
  font-size: 1.5rem;
  margin-top: 2px;
}

.benefit-text-index h4 {
  color: #0f172a;
  font-size: 1rem;
  margin-bottom: var(--space-xs);
  font-weight: 700;
}

.benefit-text-index p {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.benefits-image-block-index {
  flex: 1 1 50%;
  min-width: 300px;
}

.benefits-image-index {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.benefits-decoration-blob-index {
  position: absolute;
  top: 50%;
  right: -100px;
  width: 280px;
  height: 280px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .benefits-content-index {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .benefits-text-block-index,
  .benefits-image-block-index {
    flex: 1 1 100%;
  }
}

.stats-section-index {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.stats-header-index {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.stats-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.stats-subtitle-index {
  color: #475569;
  font-size: clamp(0.9rem, 1vw, 1rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.stats-grid-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.stat-box-index {
  flex: 1 1 220px;
  max-width: 280px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(6, 182, 212, 0.05));
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid rgba(79, 70, 229, 0.1);
}

.stat-number-large-index {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #4f46e5;
  line-height: 1;
  margin-bottom: var(--space-md);
}

.stat-text-index {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.stats-decoration-accent-index {
  position: absolute;
  top: -100px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), transparent);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .stats-grid-index {
    flex-direction: column;
    align-items: stretch;
  }

  .stat-box-index {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.cta-section-index {
  background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.cta-content-index {
  text-align: center;
  position: relative;
  z-index: 10;
}

.cta-title-index {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-md);
  font-weight: 700;
  line-height: 1.2;
}

.cta-description-index {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.7;
}

.btn-lg-index {
  padding: clamp(0.75rem, 2vw, 1.25rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
}

.cta-decoration-glow-index {
  position: absolute;
  top: 50%;
  right: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
  transform: translateY(-50%);
}

.cta-decoration-line-index {
  position: absolute;
  bottom: 20%;
  left: -100px;
  width: 250px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .cta-content-index {
    padding: 0 var(--space-lg);
  }
}

.cookie-banner-index {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: #1e293b;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2rem);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner-index.hidden {
  display: none;
}

.cookie-banner-text-index {
  color: #f1f5f9;
  font-size: 0.9rem;
  margin: 0;
  flex: 1;
  min-width: 250px;
  line-height: 1.5;
}

.cookie-banner-buttons-index {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.cookie-btn-accept-index {
  background: #4f46e5;
  color: #ffffff;
}

.cookie-btn-accept-index:hover {
  background: #4338ca;
  transform: translateY(-2px);
}

.cookie-btn-decline-index {
  background: transparent;
  color: #f1f5f9;
  border: 1px solid rgba(241, 245, 249, 0.3);
}

.cookie-btn-decline-index:hover {
  border-color: rgba(241, 245, 249, 0.6);
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 640px) {
  .cookie-banner-index {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-md);
    padding: var(--space-md);
  }

  .cookie-banner-buttons-index {
    width: 100%;
  }

  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    flex: 1;
    width: 100%;
  }
}

    .footer {
    background: var(--color-text-primary);
    padding: clamp(3rem, 8vw, 6rem) 0 clamp(1.5rem, 4vw, 3rem);
    overflow: hidden;
  }

  .footer .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
  }

  .footer-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }

  /* About Section */
  .footer-about {
    flex: 1 1 250px;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }

  .footer-about-title {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
  }

  .footer-about-text {
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 1vw, 1rem);
    color: #cbd5e1;
    line-height: 1.7;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Navigation Section */
  .footer-nav {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }

  .footer-nav-title {
    font-family: var(--font-heading);
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    font-weight: 600;
    color: #ffffff;
    margin: 0;
  }

  .footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
  }

  .footer-link {
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 1vw, 1rem);
    color: #cbd5e1;
    text-decoration: none;
    transition: color var(--transition-base);
    display: inline-block;
  }

  .footer-link:hover {
    color: #4f46e5;
  }

  /* Contact Section */
  .footer-contact {
    flex: 1 1 250px;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }

  .footer-contact-title {
    font-family: var(--font-heading);
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    font-weight: 600;
    color: #ffffff;
    margin: 0;
  }

  .footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
  }

  .footer-contact-item {
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 1vw, 1rem);
    color: #cbd5e1;
    margin: 0;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .footer-contact-label {
    font-weight: 500;
    color: #e2e8f0;
    display: block;
    margin-bottom: 0.25rem;
  }

  .footer-contact-value {
    color: #cbd5e1;
  }

  /* Legal Section */
  .footer-legal {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }

  .footer-legal-title {
    font-family: var(--font-heading);
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    font-weight: 600;
    color: #ffffff;
    margin: 0;
  }

  .footer-legal-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
  }

  .footer-legal-link {
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 1vw, 1rem);
    color: #cbd5e1;
    text-decoration: none;
    transition: color var(--transition-base);
    display: inline-block;
  }

  .footer-legal-link:hover {
    color: #4f46e5;
  }

  /* Copyright Section */
  .footer-copyright {
    border-top: 1px solid rgba(226, 232, 240, 0.1);
    padding-top: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
  }

  .footer-copyright-text {
    font-family: var(--font-primary);
    font-size: clamp(0.8125rem, 0.9vw, 0.9375rem);
    color: #94a3b8;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      gap: clamp(2rem, 4vw, 2.5rem);
    }

    .footer-about,
    .footer-nav,
    .footer-contact,
    .footer-legal {
      flex: 1 1 100%;
    }

    .footer-copyright {
      text-align: center;
    }
  }

  @media (max-width: 480px) {
    .footer {
      padding: clamp(2rem, 6vw, 3rem) 0 clamp(1rem, 3vw, 1.5rem);
    }

    .footer-contact-item {
      font-size: 0.875rem;
    }

    .footer-copyright-text {
      font-size: 0.8rem;
    }
  }
    

/* Category Page Styles */
.category-page-volleyball-fitness-jordan {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.hero-section-volleyball {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
  position: relative;
}

.hero-content-volleyball {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
  text-align: center;
}

.hero-text-volleyball {
  max-width: 800px;
}

.hero-title-volleyball {
  color: #0f172a;
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.hero-subtitle-volleyball {
  color: #4f46e5;
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-description-volleyball {
  color: #475569;
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  line-height: 1.8;
  margin: 0;
}

.hero-decoration-volleyball-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  top: -100px;
  left: 10%;
  z-index: 1;
  pointer-events: none;
}

.hero-decoration-volleyball-blur {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  filter: blur(50px);
  bottom: -80px;
  right: 5%;
  z-index: 1;
  pointer-events: none;
}

.posts-section-volleyball {
  background: var(--color-bg-tertiary);
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.posts-header-volleyball {
  text-align: center;
  margin-bottom: clamp(3rem, 8vw, 5rem);
}

.posts-title-volleyball {
  color: #0f172a;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.posts-intro-volleyball {
  color: #475569;
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.posts-grid-volleyball {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.card-volleyball-fitness-jordan {
  display: flex;
  flex-direction: column;
  flex: 1 1 300px;
  max-width: 400px;
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid #e2e8f0;
}

.card-volleyball-fitness-jordan:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  border-color: #cbd5e1;
}

.card-image-wrapper-volleyball {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f1f5f9;
}

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

.card-volleyball-fitness-jordan:hover .card-image-volleyball {
  transform: scale(1.05);
}

.card-body-volleyball {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  flex: 1;
}

.card-title-volleyball {
  color: #0f172a;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.card-description-volleyball {
  color: #475569;
  font-size: clamp(0.875rem, 1.5vw, 0.95rem);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.card-meta-volleyball {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
  font-size: 0.8rem;
}

.meta-item-volleyball {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  font-weight: 500;
}

.meta-item-volleyball i {
  color: #4f46e5;
  font-size: 0.9rem;
}

.card-link-volleyball {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #4f46e5;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition-fast);
  width: fit-content;
}

.card-link-volleyball:hover {
  color: #4338ca;
  gap: 0.75rem;
}

.card-link-volleyball::after {
  content: '→';
  transition: transform var(--transition-fast);
}

.card-link-volleyball:hover::after {
  transform: translateX(4px);
}

.stats-section-volleyball {
  background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
  position: relative;
}

.stats-section-volleyball::before {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  top: -50px;
  right: 10%;
  z-index: 1;
  pointer-events: none;
}

.stats-header-volleyball {
  text-align: center;
  margin-bottom: clamp(3rem, 8vw, 4rem);
  position: relative;
  z-index: 10;
}

.stats-title-volleyball {
  color: #0f172a;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.stats-subtitle-volleyball {
  color: #475569;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  max-width: 600px;
  margin: 0 auto;
}

.stats-grid-volleyball {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
  z-index: 10;
}

.stat-card-volleyball {
  flex: 1 1 250px;
  max-width: 280px;
  background: var(--color-bg-tertiary);
  padding: clamp(2rem, 4vw, 2.5rem);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
  transition: all var(--transition-base);
}

.stat-card-volleyball:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: #cbd5e1;
}

.stat-number-volleyball {
  color: #4f46e5;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1;
}

.stat-label-volleyball {
  color: #475569;
  font-size: clamp(0.875rem, 1.5vw, 0.95rem);
  line-height: 1.6;
  margin: 0;
}

.checklist-section-volleyball {
  background: var(--color-bg-tertiary);
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.checklist-header-volleyball {
  text-align: center;
  margin-bottom: clamp(3rem, 8vw, 5rem);
}

.checklist-title-volleyball {
  color: #0f172a;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.checklist-intro-volleyball {
  color: #475569;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  max-width: 600px;
  margin: 0 auto;
}

.checklist-grid-volleyball {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2rem, 4vw, 3rem);
}

.checklist-item-volleyball {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  flex: 1 1 320px;
  max-width: 500px;
  align-items: flex-start;
}

.checklist-icon-volleyball {
  flex-shrink: 0;
  color: #4f46e5;
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.checklist-text-volleyball {
  flex: 1;
}

.checklist-item-title-volleyball {
  color: #0f172a;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.checklist-item-desc-volleyball {
  color: #64748b;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .hero-section-volleyball {
    padding: 6rem 0;
  }

  .posts-section-volleyball {
    padding: 6rem 0;
  }

  .stats-section-volleyball {
    padding: 6rem 0;
  }

  .checklist-section-volleyball {
    padding: 6rem 0;
  }

  .card-volleyball-fitness-jordan {
    flex: 1 1 350px;
  }

  .stats-grid-volleyball {
    gap: 2rem;
  }

  .checklist-item-volleyball {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-section-volleyball {
    padding: 8rem 0;
  }

  .posts-grid-volleyball {
    gap: 2.5rem;
  }

  .stats-grid-volleyball {
    gap: 2.5rem;
  }

  .checklist-grid-volleyball {
    gap: 3rem;
  }

  .stat-card-volleyball {
    flex: 1 1 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

html {
  scroll-behavior: auto;
}

body {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Post Page 1 Styles */
.main-serve-techniques-volleyball {
  width: 100%;
  overflow: hidden;
}

.main-serve-techniques-volleyball * {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-section-serve-techniques-volleyball {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-wrapper-serve-techniques-volleyball {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-content-serve-techniques-volleyball {
  flex: 1 1 50%;
  max-width: 50%;
  position: relative;
  z-index: 10;
}

.hero-badge-serve-techniques-volleyball {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(79, 70, 229, 0.1);
  color: #4f46e5;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-title-serve-techniques-volleyball {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #0f172a;
  margin-bottom: 1rem;
  font-family: 'Almarai', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.hero-subtitle-serve-techniques-volleyball {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-meta-serve-techniques-volleyball {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
}

.meta-item-serve-techniques-volleyball {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  font-size: 0.95rem;
}

.meta-item-serve-techniques-volleyball i {
  color: #4f46e5;
  font-size: 1.1rem;
}

.hero-image-serve-techniques-volleyball {
  flex: 1 1 50%;
  max-width: 50%;
  position: relative;
  z-index: 10;
}

.hero-img-serve-techniques-volleyball {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  display: block;
}

.hero-decoration-blob-serve-techniques-volleyball {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(79, 70, 229, 0.08);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  top: -100px;
  right: -50px;
  z-index: 1;
  pointer-events: none;
  filter: blur(40px);
}

.hero-decoration-glow-serve-techniques-volleyball {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 50%;
  bottom: -80px;
  left: 10%;
  z-index: 1;
  pointer-events: none;
  filter: blur(50px);
}

.introduction-section-serve-techniques-volleyball {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.introduction-wrapper-serve-techniques-volleyball {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.introduction-text-serve-techniques-volleyball {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-title-serve-techniques-volleyball {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-family: 'Almarai', sans-serif;
  font-weight: 700;
}

.introduction-paragraph-serve-techniques-volleyball {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.introduction-image-serve-techniques-volleyball {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-img-serve-techniques-volleyball {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
  display: block;
}

.breadcrumbs-serve-techniques-volleyball {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  align-items: center;
}

.breadcrumbs-serve-techniques-volleyball a {
  color: #4f46e5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-serve-techniques-volleyball a:hover {
  color: #4338ca;
  text-decoration: underline;
}

.breadcrumbs-serve-techniques-volleyball span {
  color: #cbd5e1;
}

.serve-types-section-serve-techniques-volleyball {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.serve-types-header-serve-techniques-volleyball {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-serve-techniques-volleyball {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(79, 70, 229, 0.1);
  color: #4f46e5;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.serve-types-title-serve-techniques-volleyball {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1rem;
  font-family: 'Almarai', sans-serif;
  font-weight: 700;
}

.serve-types-subtitle-serve-techniques-volleyball {
  color: #64748b;
  font-size: 1rem;
}

.serve-types-wrapper-serve-techniques-volleyball {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.serve-types-text-serve-techniques-volleyball {
  flex: 1 1 50%;
  max-width: 50%;
}

.serve-types-subheading-serve-techniques-volleyball {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #0f172a;
  margin-bottom: 0.8rem;
  margin-top: 1.5rem;
  font-family: 'Almarai', sans-serif;
  font-weight: 700;
}

.serve-types-paragraph-serve-techniques-volleyball {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.serve-types-image-serve-techniques-volleyball {
  flex: 1 1 50%;
  max-width: 50%;
}

.serve-types-img-serve-techniques-volleyball {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
  display: block;
}

.serve-types-decoration-serve-techniques-volleyball {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 50%;
  top: 50%;
  right: -100px;
  z-index: 1;
  pointer-events: none;
  filter: blur(40px);
}

.technique-section-serve-techniques-volleyball {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.technique-header-serve-techniques-volleyball {
  margin-bottom: 3rem;
}

.technique-title-serve-techniques-volleyball {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1rem;
  margin-top: 1rem;
  font-family: 'Almarai', sans-serif;
  font-weight: 700;
}

.technique-wrapper-serve-techniques-volleyball {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.technique-image-serve-techniques-volleyball {
  flex: 1 1 50%;
  max-width: 50%;
}

.technique-img-serve-techniques-volleyball {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
  display: block;
}

.technique-text-serve-techniques-volleyball {
  flex: 1 1 50%;
  max-width: 50%;
}

.technique-subheading-serve-techniques-volleyball {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #0f172a;
  margin-bottom: 0.8rem;
  margin-top: 1.5rem;
  font-family: 'Almarai', sans-serif;
  font-weight: 700;
}

.technique-paragraph-serve-techniques-volleyball {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.technique-decoration-line-serve-techniques-volleyball {
  position: absolute;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.2), transparent);
  top: 50px;
  left: 5%;
  z-index: 1;
  pointer-events: none;
}

.strategies-section-serve-techniques-volleyball {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.strategies-header-serve-techniques-volleyball {
  text-align: center;
  margin-bottom: 3rem;
}

.strategies-title-serve-techniques-volleyball {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1rem;
  margin-top: 1rem;
  font-family: 'Almarai', sans-serif;
  font-weight: 700;
}

.strategies-subtitle-serve-techniques-volleyball {
  color: #64748b;
  font-size: 1rem;
}

.strategies-cards-container-serve-techniques-volleyball {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.strategy-card-serve-techniques-volleyball {
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.strategy-card-serve-techniques-volleyball:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.card-icon-serve-techniques-volleyball {
  font-size: 2.5rem;
  color: #4f46e5;
  display: flex;
  justify-content: center;
}

.card-title-serve-techniques-volleyball {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #0f172a;
  font-family: 'Almarai', sans-serif;
  font-weight: 700;
}

.card-text-serve-techniques-volleyball {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}

.strategies-decoration-mesh-serve-techniques-volleyball {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, transparent 70%);
  bottom: -100px;
  left: -50px;
  z-index: 1;
  pointer-events: none;
  filter: blur(60px);
}

.advanced-section-serve-techniques-volleyball {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.advanced-wrapper-serve-techniques-volleyball {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.advanced-text-serve-techniques-volleyball {
  flex: 1 1 50%;
  max-width: 50%;
}

.advanced-title-serve-techniques-volleyball {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-family: 'Almarai', sans-serif;
  font-weight: 700;
}

.advanced-paragraph-serve-techniques-volleyball {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.advanced-highlight-serve-techniques-volleyball {
  background: rgba(79, 70, 229, 0.05);
  border-left: 4px solid #4f46e5;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.highlight-title-serve-techniques-volleyball {
  font-size: 1.1rem;
  color: #0f172a;
  font-family: 'Almarai', sans-serif;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.highlight-text-serve-techniques-volleyball {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}

.advanced-image-serve-techniques-volleyball {
  flex: 1 1 50%;
  max-width: 50%;
}

.advanced-img-serve-techniques-volleyball {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
  display: block;
}

.advanced-decoration-glow-serve-techniques-volleyball {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 50%;
  top: 10%;
  right: -80px;
  z-index: 1;
  pointer-events: none;
  filter: blur(50px);
}

.conclusion-section-serve-techniques-volleyball {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.conclusion-content-serve-techniques-volleyball {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-serve-techniques-volleyball {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 2rem;
  text-align: center;
  font-family: 'Almarai', sans-serif;
  font-weight: 700;
}

.conclusion-box-serve-techniques-volleyball {
  background: #ffffff;
  border-radius: 12px;
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  margin-bottom: 2rem;
}

.conclusion-text-serve-techniques-volleyball {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.conclusion-steps-serve-techniques-volleyball {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.step-item-serve-techniques-volleyball {
  flex: 1 1 200px;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.step-number-serve-techniques-volleyball {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #4f46e5;
  line-height: 1;
}

.step-text-serve-techniques-volleyball {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}

.featured-quote-serve-techniques-volleyball {
  background: rgba(79, 70, 229, 0.08);
  border-left: 4px solid #4f46e5;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.quote-text-serve-techniques-volleyball {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #0f172a;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.quote-author-serve-techniques-volleyball {
  color: #64748b;
  font-size: 0.95rem;
  font-style: normal;
}

.disclaimer-section-serve-techniques-volleyball {
  background: #e2e8f0;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-content-serve-techniques-volleyball {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-serve-techniques-volleyball {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-family: 'Almarai', sans-serif;
  font-weight: 700;
}

.disclaimer-text-serve-techniques-volleyball {
  color: #334155;
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  line-height: 1.7;
}

.related-section-serve-techniques-volleyball {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.related-header-serve-techniques-volleyball {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-serve-techniques-volleyball {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1rem;
  font-family: 'Almarai', sans-serif;
  font-weight: 700;
}

.related-subtitle-serve-techniques-volleyball {
  color: #64748b;
  font-size: 1rem;
}

.related-cards-serve-techniques-volleyball {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-serve-techniques-volleyball {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.related-card-serve-techniques-volleyball:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.related-card-image-serve-techniques-volleyball {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-card-image-serve-techniques-volleyball img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-serve-techniques-volleyball:hover .related-card-image-serve-techniques-volleyball img {
  transform: scale(1.05);
}

.related-card-content-serve-techniques-volleyball {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-serve-techniques-volleyball {
  font-size: 1.1rem;
  color: #0f172a;
  font-family: 'Almarai', sans-serif;
  font-weight: 700;
  line-height: 1.4;
}

.related-card-text-serve-techniques-volleyball {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
  flex-grow: 1;
}

.related-decoration-serve-techniques-volleyball {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(79, 70, 229, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  top: -100px;
  left: -80px;
  z-index: 1;
  pointer-events: none;
  filter: blur(50px);
}

@media (max-width: 768px) {
  .hero-wrapper-serve-techniques-volleyball,
  .introduction-wrapper-serve-techniques-volleyball,
  .serve-types-wrapper-serve-techniques-volleyball,
  .technique-wrapper-serve-techniques-volleyball,
  .advanced-wrapper-serve-techniques-volleyball {
    flex-direction: column;
  }

  .hero-content-serve-techniques-volleyball,
  .hero-image-serve-techniques-volleyball,
  .introduction-text-serve-techniques-volleyball,
  .introduction-image-serve-techniques-volleyball,
  .serve-types-text-serve-techniques-volleyball,
  .serve-types-image-serve-techniques-volleyball,
  .technique-image-serve-techniques-volleyball,
  .technique-text-serve-techniques-volleyball,
  .advanced-text-serve-techniques-volleyball,
  .advanced-image-serve-techniques-volleyball {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .conclusion-steps-serve-techniques-volleyball {
    flex-direction: column;
  }

  .step-item-serve-techniques-volleyball {
    max-width: 100%;
  }

  .breadcrumbs-serve-techniques-volleyball {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-meta-serve-techniques-volleyball {
    gap: 1rem;
  }

  .meta-item-serve-techniques-volleyball {
    font-size: 0.85rem;
  }

  .strategies-cards-container-serve-techniques-volleyball {
    flex-direction: column;
  }

  .strategy-card-serve-techniques-volleyball {
    max-width: 100%;
  }

  .related-cards-serve-techniques-volleyball {
    flex-direction: column;
  }

  .related-card-serve-techniques-volleyball {
    max-width: 100%;
  }
}

/* Post Page 2 Styles */
.main-team-coordination-volleyball {
  width: 100%;
}

.hero-section-team-coordination-volleyball {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1a1f3a 100%);
  padding: clamp(2rem, 5vw, 4rem) 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-background-team-coordination-volleyball {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(79, 70, 229, 0.15) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.hero-glow-element-team-coordination-volleyball {
  position: absolute;
  top: -100px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.breadcrumbs-team-coordination-volleyball {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  z-index: 10;
  position: relative;
}

.breadcrumbs-team-coordination-volleyball a {
  color: #06b6d4;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  transition: color var(--transition-fast);
}

.breadcrumbs-team-coordination-volleyball a:hover {
  color: #ffffff;
}

.breadcrumbs-team-coordination-volleyball span {
  color: #475569;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.hero-content-team-coordination-volleyball {
  z-index: 10;
  position: relative;
  max-width: 900px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.hero-meta-team-coordination-volleyball {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.meta-badge-team-coordination-volleyball {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(79, 70, 229, 0.2);
  color: #a5b4fc;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.meta-divider-team-coordination-volleyball {
  color: #475569;
}

.meta-text-team-coordination-volleyball {
  color: #94a3b8;
  font-size: 0.875rem;
}

.hero-title-team-coordination-volleyball {
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
}

.hero-subtitle-team-coordination-volleyball {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-date-team-coordination-volleyball {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 0.75rem;
}

.date-icon-team-coordination-volleyball {
  font-size: 1.25rem;
}

.date-text-team-coordination-volleyball {
  color: #94a3b8;
  font-size: 0.875rem;
}

.hero-image-wrapper-team-coordination-volleyball {
  position: relative;
  width: 100%;
  margin-top: clamp(2rem, 4vw, 3rem);
  z-index: 10;
}

.hero-image-team-coordination-volleyball {
  width: 100%;
  height: clamp(300px, 50vh, 500px);
  object-fit: cover;
  border-radius: var(--radius-2xl);
  display: block;
}

.hero-image-overlay-team-coordination-volleyball {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.2) 0%, transparent 100%);
  border-radius: var(--radius-2xl);
  pointer-events: none;
}

.intro-section-team-coordination-volleyball {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-wrapper-team-coordination-volleyball {
  display: flex;
  flex-direction: row-reverse;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-team-coordination-volleyball {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-team-coordination-volleyball {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
}

.intro-paragraph-team-coordination-volleyball {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-team-coordination-volleyball {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-team-coordination-volleyball {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  max-height: 400px;
  object-fit: cover;
}

.content-section-one-team-coordination-volleyball {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-one-team-coordination-volleyball {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-one-team-coordination-volleyball {
  flex: 1 1 50%;
  max-width: 50%;
}

.section-title-one-team-coordination-volleyball {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
}

.section-text-one-team-coordination-volleyball {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.highlight-list-team-coordination-volleyball {
  list-style: none;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.highlight-item-team-coordination-volleyball {
  color: #334155;
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  padding-left: 1.5rem;
  position: relative;
}

.highlight-item-team-coordination-volleyball::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #4f46e5;
  font-weight: bold;
}

.featured-quote-team-coordination-volleyball {
  margin: clamp(2rem, 3vw, 3rem) 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #4f46e5;
  background: rgba(79, 70, 229, 0.05);
  border-radius: var(--radius-lg);
}

.quote-text-team-coordination-volleyball {
  color: #1a1a1a;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.quote-author-team-coordination-volleyball {
  color: #64748b;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  display: block;
}

.content-image-one-team-coordination-volleyball {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-one-team-coordination-volleyball {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  max-height: 400px;
  object-fit: cover;
}

.content-section-two-team-coordination-volleyball {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-two-team-coordination-volleyball {
  display: flex;
  flex-direction: row-reverse;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-image-two-team-coordination-volleyball {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-two-team-coordination-volleyball {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  max-height: 400px;
  object-fit: cover;
}

.content-text-two-team-coordination-volleyball {
  flex: 1 1 50%;
  max-width: 50%;
}

.section-title-two-team-coordination-volleyball {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
}

.section-text-two-team-coordination-volleyball {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.highlight-box-team-coordination-volleyball {
  background: #f1f5f9;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  border-left: 4px solid #06b6d4;
}

.box-title-team-coordination-volleyball {
  color: #0f172a;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  font-family: var(--font-heading);
}

.box-text-team-coordination-volleyball {
  color: #334155;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
}

.content-section-three-team-coordination-volleyball {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-three-team-coordination-volleyball {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.content-text-three-team-coordination-volleyball {
  flex: 1 1 100%;
  max-width: 100%;
}

.section-title-three-team-coordination-volleyball {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
}

.section-text-three-team-coordination-volleyball {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.roles-grid-team-coordination-volleyball {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.role-card-team-coordination-volleyball {
  flex: 1 1 calc(50% - 0.75rem);
  min-width: 250px;
  background: #ffffff;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 3px solid #4f46e5;
  transition: all var(--transition-base);
}

.role-card-team-coordination-volleyball:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.role-title-team-coordination-volleyball {
  color: #0f172a;
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  font-family: var(--font-heading);
}

.role-text-team-coordination-volleyball {
  color: #475569;
  font-size: clamp(0.8rem, 0.9vw, 0.875rem);
  line-height: 1.6;
}

.content-section-four-team-coordination-volleyball {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-four-team-coordination-volleyball {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-image-four-team-coordination-volleyball {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-four-team-coordination-volleyball {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  max-height: 400px;
  object-fit: cover;
}

.content-text-four-team-coordination-volleyball {
  flex: 1 1 50%;
  max-width: 50%;
}

.section-title-four-team-coordination-volleyball {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
}

.coaching-list-team-coordination-volleyball {
  list-style: none;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.coaching-item-team-coordination-volleyball {
  color: #334155;
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.coaching-item-team-coordination-volleyball::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #06b6d4;
  font-weight: bold;
}

.conclusion-section-team-coordination-volleyball {
  background: linear-gradient(135deg, #0f172a 0%, #1a1f3a 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.conclusion-glow-team-coordination-volleyball {
  position: absolute;
  top: 50%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(79, 70, 229, 0.1);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.conclusion-content-team-coordination-volleyball {
  position: relative;
  z-index: 10;
}

.conclusion-title-team-coordination-volleyball {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
}

.conclusion-text-team-coordination-volleyball {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
  margin-bottom: clamp(2rem, 3vw, 3rem);
  max-width: 800px;
}

.steps-container-team-coordination-volleyball {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.step-item-team-coordination-volleyball {
  display: flex;
  flex-direction: row-reverse;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
}

.step-number-team-coordination-volleyball {
  flex-shrink: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #4f46e5;
  font-family: var(--font-heading);
  line-height: 1;
}

.step-content-team-coordination-volleyball {
  flex: 1;
}

.step-title-team-coordination-volleyball {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  font-family: var(--font-heading);
}

.step-text-team-coordination-volleyball {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

.cta-box-team-coordination-volleyball {
  background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--radius-2xl);
  text-align: center;
  color: #ffffff;
}

.cta-title-team-coordination-volleyball {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  font-family: var(--font-heading);
}

.cta-text-team-coordination-volleyball {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button-team-coordination-volleyball {
  background: #ffffff;
  color: #4f46e5;
  font-weight: 600;
}

.cta-button-team-coordination-volleyball:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
}

.disclaimer-section-team-coordination-volleyball {
  background: #f8fafc;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-team-coordination-volleyball {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid #f59e0b;
}

.disclaimer-title-team-coordination-volleyball {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  font-family: var(--font-heading);
}

.disclaimer-text-team-coordination-volleyball {
  color: #475569;
  font-size: clamp(0.8rem, 0.95vw, 0.9375rem);
  line-height: 1.7;
}

.related-section-team-coordination-volleyball {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-team-coordination-volleyball {
  text-align: center;
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.related-title-team-coordination-volleyball {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  font-family: var(--font-heading);
}

.related-subtitle-team-coordination-volleyball {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.related-cards-grid-team-coordination-volleyball {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-team-coordination-volleyball {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 380px;
  background: #f8fafc;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.related-card-team-coordination-volleyball:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: #ffffff;
}

.related-card-image-team-coordination-volleyball {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-card-image-team-coordination-volleyball img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

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

.related-card-content-team-coordination-volleyball {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
  flex: 1;
}

.related-card-title-team-coordination-volleyball {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #0f172a;
  font-weight: 600;
  line-height: 1.3;
  font-family: var(--font-heading);
}

.related-card-text-team-coordination-volleyball {
  color: #64748b;
  font-size: clamp(0.8rem, 0.95vw, 0.875rem);
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-team-coordination-volleyball {
  color: #4f46e5;
  font-size: clamp(0.8rem, 0.95vw, 0.875rem);
  font-weight: 600;
  margin-top: clamp(0.5rem, 1vw, 0.75rem);
  transition: color var(--transition-fast);
}

.related-card-team-coordination-volleyball:hover .related-card-link-team-coordination-volleyball {
  color: #06b6d4;
}

@media (max-width: 1024px) {
  .content-wrapper-one-team-coordination-volleyball,
  .content-wrapper-two-team-coordination-volleyball,
  .content-wrapper-four-team-coordination-volleyball,
  .intro-wrapper-team-coordination-volleyball {
    flex-direction: column;
  }

  .content-text-one-team-coordination-volleyball,
  .content-image-one-team-coordination-volleyball,
  .content-text-two-team-coordination-volleyball,
  .content-image-two-team-coordination-volleyball,
  .content-text-four-team-coordination-volleyball,
  .content-image-four-team-coordination-volleyball,
  .intro-text-team-coordination-volleyball,
  .intro-image-team-coordination-volleyball {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .role-card-team-coordination-volleyball {
    flex: 1 1 100%;
  }

  .related-card-team-coordination-volleyball {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .hero-section-team-coordination-volleyball {
    padding: clamp(2rem, 4vw, 3rem) 0;
    min-height: auto;
  }

  .breadcrumbs-team-coordination-volleyball {
    flex-wrap: wrap;
  }

  .hero-image-team-coordination-volleyball {
    height: clamp(200px, 40vh, 350px);
  }

  .step-item-team-coordination-volleyball {
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .step-number-team-coordination-volleyball {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }

  .related-card-team-coordination-volleyball {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .cta-box-team-coordination-volleyball {
    text-align: center;
  }

  .roles-grid-team-coordination-volleyball {
    flex-direction: column;
  }

  .role-card-team-coordination-volleyball {
    flex: 1 1 100%;
  }
}

/* Post Page 3 Styles */
.main-spike-technique-mastery {
  width: 100%;
}

.hero-section-spike-technique-mastery {
  background: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-content-wrapper-spike-technique-mastery {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-content-spike-technique-mastery {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-spike-technique-mastery {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle-spike-technique-mastery {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hero-meta-spike-technique-mastery {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.meta-item-spike-technique-mastery {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  font-size: 0.95rem;
}

.meta-item-spike-technique-mastery i {
  color: #4f46e5;
  font-size: 1.1rem;
}

.hero-image-container-spike-technique-mastery {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-spike-technique-mastery {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.breadcrumbs-spike-technique-mastery {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.breadcrumbs-spike-technique-mastery a {
  color: #4f46e5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-spike-technique-mastery a:hover {
  color: #4338ca;
  text-decoration: underline;
}

.breadcrumbs-spike-technique-mastery span {
  color: #94a3b8;
}

.breadcrumbs-spike-technique-mastery > span:last-child {
  color: #0f172a;
  font-weight: 500;
}

.hero-glow-element-spike-technique-mastery {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, transparent 70%);
  filter: blur(60px);
  top: -100px;
  left: -100px;
  z-index: 1;
  pointer-events: none;
}

.hero-ambient-orb-spike-technique-mastery {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 50%;
  filter: blur(50px);
  bottom: -80px;
  right: -80px;
  z-index: 1;
  pointer-events: none;
}

.introduction-section-spike-technique-mastery {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.introduction-wrapper-spike-technique-mastery {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.introduction-text-spike-technique-mastery {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-title-spike-technique-mastery {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.introduction-description-spike-technique-mastery {
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
}

.key-highlights-spike-technique-mastery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.highlight-box-spike-technique-mastery {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #4f46e5;
}

.highlight-box-spike-technique-mastery i {
  color: #4f46e5;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.highlight-box-spike-technique-mastery span {
  color: #0f172a;
  font-weight: 500;
}

.introduction-image-spike-technique-mastery {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-image-element-spike-technique-mastery {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.introduction-glow-element-spike-technique-mastery {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.06) 0%, transparent 70%);
  filter: blur(60px);
  top: 50%;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.foundation-section-spike-technique-mastery {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.foundation-wrapper-spike-technique-mastery {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.foundation-content-left-spike-technique-mastery {
  flex: 1 1 50%;
  max-width: 50%;
}

.foundation-title-spike-technique-mastery {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 2rem;
  font-weight: 700;
}

.steps-container-spike-technique-mastery {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step-item-spike-technique-mastery {
  display: flex;
  gap: 1.5rem;
}

.step-number-spike-technique-mastery {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #4f46e5;
  line-height: 1;
  min-width: 70px;
}

.step-content-spike-technique-mastery {
  flex: 1;
}

.step-title-spike-technique-mastery {
  font-size: 1.1rem;
  color: #0f172a;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.step-description-spike-technique-mastery {
  color: #475569;
  line-height: 1.7;
  font-size: 0.95rem;
}

.foundation-content-right-spike-technique-mastery {
  flex: 1 1 50%;
  max-width: 50%;
}

.foundation-image-element-spike-technique-mastery {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.foundation-accent-element-spike-technique-mastery {
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(6, 182, 212, 0.05));
  border-radius: 50%;
  bottom: 20px;
  left: -80px;
  z-index: 1;
  pointer-events: none;
  filter: blur(40px);
}

.technique-section-spike-technique-mastery {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.technique-wrapper-spike-technique-mastery {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.technique-image-left-spike-technique-mastery {
  flex: 1 1 50%;
  max-width: 50%;
}

.technique-image-element-spike-technique-mastery {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.technique-content-right-spike-technique-mastery {
  flex: 1 1 50%;
  max-width: 50%;
}

.technique-title-spike-technique-mastery {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.technique-text-spike-technique-mastery {
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.8;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
}

.technique-tips-spike-technique-mastery {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tip-card-spike-technique-mastery {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.tip-card-spike-technique-mastery:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.tip-icon-spike-technique-mastery {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(79, 70, 229, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
  color: #4f46e5;
  font-size: 1.3rem;
}

.tip-content-spike-technique-mastery {
  flex: 1;
}

.tip-title-spike-technique-mastery {
  color: #0f172a;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.tip-description-spike-technique-mastery {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
}

.training-section-spike-technique-mastery {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.training-wrapper-spike-technique-mastery {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.training-content-left-spike-technique-mastery {
  flex: 1 1 50%;
  max-width: 50%;
}

.training-title-spike-technique-mastery {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.training-text-spike-technique-mastery {
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.8;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
}

.training-schedule-spike-technique-mastery {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.schedule-item-spike-technique-mastery {
  padding: 1.5rem;
  background: #f8fafc;
  border-left: 4px solid #06b6d4;
  border-radius: 8px;
}

.schedule-title-spike-technique-mastery {
  color: #0f172a;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.schedule-text-spike-technique-mastery {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}

.training-image-right-spike-technique-mastery {
  flex: 1 1 50%;
  max-width: 50%;
}

.training-image-element-spike-technique-mastery {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mistakes-section-spike-technique-mastery {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.mistakes-title-spike-technique-mastery {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 700;
  text-align: center;
}

.mistakes-intro-spike-technique-mastery {
  color: #475569;
  margin-bottom: 2.5rem;
  text-align: center;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.mistakes-grid-spike-technique-mastery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.mistake-card-spike-technique-mastery {
  flex: 1 1 calc(50% - 1rem);
  min-width: 250px;
  max-width: 350px;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.mistake-card-spike-technique-mastery:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.mistake-title-spike-technique-mastery {
  color: #0f172a;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.mistake-text-spike-technique-mastery {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
}

.featured-quote-section-spike-technique-mastery {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(6, 182, 212, 0.05));
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.featured-quote-spike-technique-mastery {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  background: #ffffff;
  border-left: 5px solid #4f46e5;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.quote-text-spike-technique-mastery {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #0f172a;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.quote-author-spike-technique-mastery {
  color: #475569;
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 500;
}

.conclusion-section-spike-technique-mastery {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.conclusion-wrapper-spike-technique-mastery {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.conclusion-content-spike-technique-mastery {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-title-spike-technique-mastery {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.conclusion-text-spike-technique-mastery {
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.8;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
}

.conclusion-key-points-spike-technique-mastery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.key-point-spike-technique-mastery {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 8px;
}

.point-icon-spike-technique-mastery {
  color: #06b6d4;
  font-size: 1.2rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.point-text-spike-technique-mastery {
  color: #0f172a;
  font-size: 0.95rem;
  line-height: 1.5;
}

.conclusion-image-spike-technique-mastery {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-element-spike-technique-mastery {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.disclaimer-section-spike-technique-mastery {
  background: #f8fafc;
  padding: clamp(2rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-content-spike-technique-mastery {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: #ffffff;
  border-left: 5px solid #f59e0b;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.disclaimer-title-spike-technique-mastery {
  color: #92400e;
  font-size: 1.15rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.disclaimer-text-spike-technique-mastery {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
}

.related-posts-section-spike-technique-mastery {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.related-posts-title-spike-technique-mastery {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 3rem;
  font-weight: 700;
  text-align: center;
}

.related-posts-grid-spike-technique-mastery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-post-card-spike-technique-mastery {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.related-post-card-spike-technique-mastery:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.related-post-image-spike-technique-mastery {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f8fafc;
}

.related-post-image-spike-technique-mastery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-post-card-spike-technique-mastery:hover .related-post-image-spike-technique-mastery img {
  transform: scale(1.05);
}

.related-post-title-spike-technique-mastery {
  font-size: 1.15rem;
  color: #0f172a;
  padding: 1.5rem 1.5rem 0.75rem;
  font-weight: 600;
  line-height: 1.4;
}

.related-post-description-spike-technique-mastery {
  font-size: 0.9rem;
  color: #64748b;
  padding: 0 1.5rem 1.5rem;
  line-height: 1.6;
  flex: 1;
}

@media (max-width: 1024px) {
  .hero-content-wrapper-spike-technique-mastery,
  .introduction-wrapper-spike-technique-mastery,
  .foundation-wrapper-spike-technique-mastery,
  .technique-wrapper-spike-technique-mastery,
  .training-wrapper-spike-technique-mastery,
  .conclusion-wrapper-spike-technique-mastery {
    flex-direction: column;
  }

  .hero-text-content-spike-technique-mastery,
  .hero-image-container-spike-technique-mastery,
  .introduction-text-spike-technique-mastery,
  .introduction-image-spike-technique-mastery,
  .foundation-content-left-spike-technique-mastery,
  .foundation-content-right-spike-technique-mastery,
  .technique-image-left-spike-technique-mastery,
  .technique-content-right-spike-technique-mastery,
  .training-content-left-spike-technique-mastery,
  .training-image-right-spike-technique-mastery,
  .conclusion-content-spike-technique-mastery,
  .conclusion-image-spike-technique-mastery {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-post-card-spike-technique-mastery {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .hero-section-spike-technique-mastery,
  .introduction-section-spike-technique-mastery,
  .foundation-section-spike-technique-mastery,
  .technique-section-spike-technique-mastery,
  .training-section-spike-technique-mastery,
  .featured-quote-section-spike-technique-mastery,
  .conclusion-section-spike-technique-mastery,
  .disclaimer-section-spike-technique-mastery,
  .related-posts-section-spike-technique-mastery {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  .hero-meta-spike-technique-mastery {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .steps-container-spike-technique-mastery,
  .training-schedule-spike-technique-mastery,
  .technique-tips-spike-technique-mastery {
    gap: 1.5rem;
  }

  .step-number-spike-technique-mastery {
    font-size: 2rem;
    min-width: 60px;
  }

  .featured-quote-spike-technique-mastery {
    padding: 2rem;
  }

  .quote-text-spike-technique-mastery {
    font-size: 1.1rem;
  }

  .disclaimer-content-spike-technique-mastery {
    padding: 1.5rem;
  }

  .related-post-card-spike-technique-mastery {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .mistake-card-spike-technique-mastery {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .breadcrumbs-spike-technique-mastery {
    font-size: 0.85rem;
  }
}

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

  .hero-title-spike-technique-mastery {
    font-size: 1.5rem;
  }

  .introduction-title-spike-technique-mastery,
  .foundation-title-spike-technique-mastery,
  .technique-title-spike-technique-mastery,
  .training-title-spike-technique-mastery,
  .mistakes-title-spike-technique-mastery,
  .related-posts-title-spike-technique-mastery {
    font-size: 1.4rem;
  }

  .step-number-spike-technique-mastery {
    font-size: 1.75rem;
    min-width: 50px;
  }

  .tip-card-spike-technique-mastery,
  .schedule-item-spike-technique-mastery,
  .highlight-box-spike-technique-mastery {
    padding: 1rem;
  }

  .featured-quote-spike-technique-mastery {
    padding: 1.5rem;
  }

  .quote-text-spike-technique-mastery {
    font-size: 1rem;
  }

  .related-post-image-spike-technique-mastery {
    height: 160px;
  }
}

/* Post Page 4 Styles */
.main-core-strength-training {
  width: 100%;
  overflow: hidden;
}

.hero-section-core-strength-training {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.hero-decoration-one-core-strength-training {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, transparent 70%);
  filter: blur(60px);
  top: -100px;
  right: 10%;
  z-index: 1;
  pointer-events: none;
}

.hero-decoration-two-core-strength-training {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  filter: blur(50px);
  bottom: -80px;
  left: 5%;
  z-index: 1;
  pointer-events: none;
}

.breadcrumbs-core-strength-training {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-core-strength-training a {
  color: #4f46e5;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.breadcrumbs-core-strength-training a:hover {
  color: #4338ca;
}

.breadcrumbs-core-strength-training span {
  color: #94a3b8;
}

.hero-content-core-strength-training {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-text-wrapper-core-strength-training {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-wrapper-core-strength-training {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-core-strength-training {
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle-core-strength-training {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #475569;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-meta-core-strength-training {
  display: flex;
  flex-direction: row-reverse;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.meta-item-core-strength-training {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  font-size: 0.875rem;
}

.meta-item-core-strength-training i {
  color: #4f46e5;
}

.hero-image-core-strength-training {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .hero-content-core-strength-training {
    flex-direction: column;
  }

  .hero-text-wrapper-core-strength-training,
  .hero-image-wrapper-core-strength-training {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-title-core-strength-training {
    font-size: 1.75rem;
  }
}

.introduction-section-core-strength-training {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.introduction-wrapper-core-strength-training {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.introduction-text-core-strength-training {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-image-core-strength-training {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-title-core-strength-training {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.introduction-paragraph-core-strength-training {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-image-core-strength-training {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.intro-decoration-core-strength-training {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(6, 182, 212, 0.04);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  bottom: -50px;
  right: -20px;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .introduction-wrapper-core-strength-training {
    flex-direction: column;
  }

  .introduction-text-core-strength-training,
  .introduction-image-core-strength-training {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.fundamentals-section-core-strength-training {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.fundamentals-header-core-strength-training {
  text-align: center;
  margin-bottom: 3rem;
}

.fundamentals-title-core-strength-training {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.fundamentals-subtitle-core-strength-training {
  color: #64748b;
  font-size: 1rem;
}

.fundamentals-wrapper-core-strength-training {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.fundamentals-content-core-strength-training {
  flex: 1 1 50%;
  max-width: 50%;
}

.fundamentals-list-core-strength-training {
  list-style: none;
}

.fundamental-item-core-strength-training {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.fundamental-item-core-strength-training:last-child {
  border-bottom: none;
}

.item-title-core-strength-training {
  color: #0f172a;
  font-weight: 600;
  font-size: 1rem;
}

.item-description-core-strength-training {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.6;
}

.fundamentals-image-core-strength-training {
  flex: 1 1 50%;
  max-width: 50%;
}

.fund-image-core-strength-training {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.fund-decoration-one-core-strength-training {
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, transparent 100%);
  border-radius: 50%;
  top: 10%;
  left: -50px;
  z-index: 0;
  pointer-events: none;
}

.fund-decoration-two-core-strength-training {
  position: absolute;
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, rgba(6, 182, 212, 0.05) 0%, transparent 100%);
  border-radius: 50%;
  bottom: 20%;
  right: -40px;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .fundamentals-wrapper-core-strength-training {
    flex-direction: column;
  }

  .fundamentals-content-core-strength-training,
  .fundamentals-image-core-strength-training {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.exercises-section-core-strength-training {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.exercises-header-core-strength-training {
  text-align: center;
  margin-bottom: 3rem;
}

.exercises-title-core-strength-training {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.exercises-subtitle-core-strength-training {
  color: #64748b;
  font-size: 1rem;
}

.exercises-wrapper-core-strength-training {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.exercises-text-core-strength-training {
  flex: 1 1 50%;
  max-width: 50%;
}

.exercises-subheading-core-strength-training {
  font-size: 1.25rem;
  color: #0f172a;
  margin-bottom: 1rem;
}

.exercises-paragraph-core-strength-training {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.exercises-highlight-core-strength-training {
  background: #f1f5f9;
  border-left: 4px solid #4f46e5;
  padding: 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.25rem;
}

.highlight-text-core-strength-training {
  color: #1f2937;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.exercises-image-core-strength-training {
  flex: 1 1 50%;
  max-width: 50%;
}

.exer-image-core-strength-training {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .exercises-wrapper-core-strength-training {
    flex-direction: column;
  }

  .exercises-text-core-strength-training,
  .exercises-image-core-strength-training {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.progression-section-core-strength-training {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.progression-wrapper-core-strength-training {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.progression-image-core-strength-training {
  flex: 1 1 50%;
  max-width: 50%;
}

.prog-image-core-strength-training {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.progression-text-core-strength-training {
  flex: 1 1 50%;
  max-width: 50%;
}

.progression-title-core-strength-training {
  font-size: 1.5rem;
  color: #0f172a;
  margin-bottom: 1rem;
}

.progression-paragraph-core-strength-training {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.progression-quote-core-strength-training {
  background: #ffffff;
  border-left: 4px solid #06b6d4;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.quote-text-core-strength-training {
  color: #1f2937;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .progression-wrapper-core-strength-training {
    flex-direction: column;
  }

  .progression-image-core-strength-training,
  .progression-text-core-strength-training {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.benefits-section-core-strength-training {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.benefits-header-core-strength-training {
  text-align: center;
  margin-bottom: 3rem;
}

.benefits-title-core-strength-training {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 0;
}

.benefits-grid-core-strength-training {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.benefit-card-core-strength-training {
  flex: 1 1 300px;
  max-width: 350px;
  background: #f8fafc;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.benefit-card-core-strength-training:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-icon-core-strength-training {
  font-size: 2.5rem;
  color: #4f46e5;
  margin-bottom: 1rem;
}

.card-title-core-strength-training {
  font-size: 1.125rem;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.card-text-core-strength-training {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.benefits-decoration-core-strength-training {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -100px;
  right: -50px;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .benefit-card-core-strength-training {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tips-section-core-strength-training {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.tips-header-core-strength-training {
  text-align: center;
  margin-bottom: 3rem;
}

.tips-title-core-strength-training {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 0;
}

.tips-wrapper-core-strength-training {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.tips-text-core-strength-training {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tip-item-core-strength-training {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.tip-number-core-strength-training {
  font-size: 2.5rem;
  font-weight: 800;
  color: #4f46e5;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.tip-heading-core-strength-training {
  color: #0f172a;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.tip-description-core-strength-training {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.tips-image-core-strength-training {
  flex: 1 1 50%;
  max-width: 50%;
}

.tips-img-core-strength-training {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .tips-wrapper-core-strength-training {
    flex-direction: column;
  }

  .tips-text-core-strength-training,
  .tips-image-core-strength-training {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .tip-item-core-strength-training {
    flex-direction: row;
  }
}

.conclusion-section-core-strength-training {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.conclusion-content-core-strength-training {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-core-strength-training {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 2rem;
}

.conclusion-paragraph-core-strength-training {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-cta-core-strength-training {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(6, 182, 212, 0.08) 100%);
  border-left: 4px solid #4f46e5;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.cta-text-core-strength-training {
  color: #0f172a;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.related-section-core-strength-training {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.related-title-core-strength-training {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  text-align: center;
  margin-bottom: 3rem;
}

.related-grid-core-strength-training {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-core-strength-training {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.related-card-core-strength-training:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.related-image-wrapper-core-strength-training {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
}

.related-card-image-core-strength-training {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-core-strength-training {
  padding: 1.5rem;
}

.related-card-title-core-strength-training {
  font-size: 1.125rem;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.related-card-description-core-strength-training {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.related-card-link-core-strength-training {
  color: #4f46e5;
  font-weight: 600;
  font-size: 0.875rem;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.related-card-link-core-strength-training:hover {
  color: #4338ca;
}

@media (max-width: 768px) {
  .related-card-core-strength-training {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-core-strength-training {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-core-strength-training {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-core-strength-training {
  font-size: 1.25rem;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-core-strength-training {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  section {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  .hero-title-core-strength-training {
    font-size: 1.75rem;
  }

  .exercises-title-core-strength-training,
  .benefits-title-core-strength-training,
  .tips-title-core-strength-training,
  .related-title-core-strength-training {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-core-strength-training {
    font-size: 0.75rem;
  }

  .hero-meta-core-strength-training {
    gap: 1rem;
  }

  .tip-number-core-strength-training {
    font-size: 2rem;
  }
}

/* Post Page 5 Styles */
.main-defensive-reception-skills {
  width: 100%;
  overflow: hidden;
}

.hero-section-defensive-reception-skills {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-defensive-reception-skills .container {
  position: relative;
  z-index: 10;
}

.breadcrumbs-defensive-reception-skills {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.breadcrumbs-defensive-reception-skills a {
  color: #4f46e5;
  text-decoration: none;
  transition: color 150ms ease;
}

.breadcrumbs-defensive-reception-skills a:hover {
  color: #4338ca;
}

.breadcrumbs-defensive-reception-skills span {
  color: #94a3b8;
}

.hero-content-wrapper-defensive-reception-skills {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-block-defensive-reception-skills {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-defensive-reception-skills {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.hero-subtitle-defensive-reception-skills {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #475569;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
}

.hero-meta-defensive-reception-skills {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.meta-item-defensive-reception-skills {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.875rem;
  color: #475569;
}

.meta-item-defensive-reception-skills i {
  color: #4f46e5;
  font-size: 1rem;
}

.hero-image-block-defensive-reception-skills {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-defensive-reception-skills {
  width: 100%;
  height: auto;
  max-height: 450px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hero-decorative-element-1-defensive-reception-skills {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, transparent 70%);
  filter: blur(60px);
  top: -100px;
  right: -150px;
  z-index: 1;
  pointer-events: none;
}

.hero-decorative-element-2-defensive-reception-skills {
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  filter: blur(50px);
  bottom: -80px;
  left: 10%;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero-content-wrapper-defensive-reception-skills {
    flex-direction: column;
  }

  .hero-text-block-defensive-reception-skills,
  .hero-image-block-defensive-reception-skills {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-meta-defensive-reception-skills {
    gap: 1rem;
  }
}

.introduction-section-defensive-reception-skills {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-wrapper-defensive-reception-skills {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-column-defensive-reception-skills {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-heading-defensive-reception-skills {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-defensive-reception-skills {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.125rem);
  color: #475569;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.intro-image-column-defensive-reception-skills {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-defensive-reception-skills {
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-wrapper-defensive-reception-skills {
    flex-direction: column;
  }

  .intro-text-column-defensive-reception-skills,
  .intro-image-column-defensive-reception-skills {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-one-defensive-reception-skills {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-one-defensive-reception-skills {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-one-defensive-reception-skills {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-heading-one-defensive-reception-skills {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-paragraph-one-defensive-reception-skills {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.125rem);
  color: #475569;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.7;
}

.key-points-defensive-reception-skills {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #4f46e5;
}

.points-title-defensive-reception-skills {
  font-size: 1.1rem;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 1rem;
}

.points-list-defensive-reception-skills {
  list-style: none;
}

.point-item-defensive-reception-skills {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  color: #475569;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.point-item-defensive-reception-skills::before {
  content: '✓';
  flex-shrink: 0;
  color: #4f46e5;
  font-weight: 700;
  font-size: 1.1rem;
}

.content-image-one-defensive-reception-skills {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-defensive-reception-skills {
  width: 100%;
  height: auto;
  max-height: 380px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .content-wrapper-one-defensive-reception-skills {
    flex-direction: column;
  }

  .content-text-one-defensive-reception-skills,
  .content-image-one-defensive-reception-skills {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-two-defensive-reception-skills {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-two-defensive-reception-skills {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-image-two-defensive-reception-skills {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-text-two-defensive-reception-skills {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-heading-two-defensive-reception-skills {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-paragraph-two-defensive-reception-skills {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.125rem);
  color: #475569;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.7;
}

.defense-types-defensive-reception-skills {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.defense-type-card-defensive-reception-skills {
  background: #f8fafc;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 12px;
  border-top: 3px solid #4f46e5;
}

.defense-type-title-defensive-reception-skills {
  font-size: 1.1rem;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.defense-type-text-defensive-reception-skills {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .content-wrapper-two-defensive-reception-skills {
    flex-direction: column;
  }

  .content-image-two-defensive-reception-skills,
  .content-text-two-defensive-reception-skills {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }
}

.highlight-section-defensive-reception-skills {
  background: linear-gradient(135deg, #e2e8f0 0%, #f8fafc 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.highlight-box-defensive-reception-skills {
  background: #ffffff;
  border-left: 5px solid #4f46e5;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
}

.highlight-icon-defensive-reception-skills {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #4f46e5;
  flex-shrink: 0;
  min-width: 50px;
}

.highlight-title-defensive-reception-skills {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.highlight-text-defensive-reception-skills {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .highlight-box-defensive-reception-skills {
    flex-direction: column;
  }
}

.content-section-three-defensive-reception-skills {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-three-defensive-reception-skills {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-three-defensive-reception-skills {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-heading-three-defensive-reception-skills {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-paragraph-three-defensive-reception-skills {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.125rem);
  color: #475569;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.7;
}

.training-tips-defensive-reception-skills {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.training-tip-defensive-reception-skills {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #4f46e5;
}

.tip-number-defensive-reception-skills {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #4f46e5;
  flex-shrink: 0;
  min-width: 60px;
  line-height: 1;
}

.tip-content-defensive-reception-skills {
  flex: 1;
}

.tip-title-defensive-reception-skills {
  font-size: 1.1rem;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tip-text-defensive-reception-skills {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

.content-image-three-defensive-reception-skills {
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 768px) {
  .content-wrapper-three-defensive-reception-skills {
    flex-direction: column;
  }

  .content-text-three-defensive-reception-skills,
  .content-image-three-defensive-reception-skills {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.quote-section-defensive-reception-skills {
  background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-defensive-reception-skills {
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid #ffffff;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  margin: 0;
  font-style: italic;
}

.quote-text-defensive-reception-skills {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.quote-author-defensive-reception-skills {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: #e2e8f0;
  display: block;
}

.conclusion-section-defensive-reception-skills {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-defensive-reception-skills {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-heading-defensive-reception-skills {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
}

.conclusion-paragraph-defensive-reception-skills {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.125rem);
  color: #475569;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.8;
  text-align: right;
}

.key-takeaways-defensive-reception-skills {
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  margin-top: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #4f46e5;
}

.takeaways-heading-defensive-reception-skills {
  font-size: 1.15rem;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 1rem;
}

.takeaways-list-defensive-reception-skills {
  list-style: none;
}

.takeaway-item-defensive-reception-skills {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  color: #475569;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.takeaway-item-defensive-reception-skills::before {
  content: '✓';
  flex-shrink: 0;
  color: #4f46e5;
  font-weight: 700;
  font-size: 1.1rem;
}

.disclaimer-section-defensive-reception-skills {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-defensive-reception-skills {
  background: #ffffff;
  border-left: 5px solid #f59e0b;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.disclaimer-heading-defensive-reception-skills {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1rem;
}

.disclaimer-text-defensive-reception-skills {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #475569;
  line-height: 1.8;
  text-align: right;
}

.related-posts-section-defensive-reception-skills {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-defensive-reception-skills {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.related-title-defensive-reception-skills {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.related-subtitle-defensive-reception-skills {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.125rem);
  color: #475569;
  line-height: 1.6;
}

.related-cards-wrapper-defensive-reception-skills {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-defensive-reception-skills {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 250ms ease;
}

.related-card-defensive-reception-skills:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.related-card-image-defensive-reception-skills {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-image-defensive-reception-skills {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.related-card-defensive-reception-skills:hover .related-image-defensive-reception-skills {
  transform: scale(1.05);
}

.related-card-content-defensive-reception-skills {
  padding: clamp(1.5rem, 3vw, 2rem);
}

.related-card-title-defensive-reception-skills {
  font-size: clamp(1.1rem, 2vw + 0.4rem, 1.4rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.related-card-description-defensive-reception-skills {
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.related-card-link-defensive-reception-skills {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #4f46e5;
  font-weight: 600;
  text-decoration: none;
  transition: color 150ms ease;
  font-size: 0.95rem;
}

.related-card-link-defensive-reception-skills:hover {
  color: #4338ca;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-cards-wrapper-defensive-reception-skills {
    flex-direction: column;
  }

  .related-card-defensive-reception-skills {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-meta-defensive-reception-skills {
    flex-direction: column;
    gap: 0.5rem;
  }

  .training-tip-defensive-reception-skills {
    flex-direction: column;
  }

  .highlight-box-defensive-reception-skills {
    flex-direction: column;
  }
}

/* About Page Styles */
.volleyball-excellence-about {
    font-family: var(--font-primary);
    color: var(--color-text-primary);
  }

  .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
  }

  .hero-section-about {
    background: var(--color-bg-primary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
    position: relative;
  }

  .hero-decoration-radiance-about {
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.12) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
    top: -50px;
    right: -80px;
  }

  .hero-decoration-flow-about {
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(6, 182, 212, 0.08);
    border-radius: 50%;
    filter: blur(50px);
    z-index: 1;
    pointer-events: none;
    bottom: -100px;
    left: 10%;
  }

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

  .hero-title-about {
    font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero-subtitle-about {
    font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero-image-about {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin: 2rem 0 0 0;
    border-radius: 12px;
    display: block;
    box-shadow: var(--shadow-lg);
  }

  .hero-stats-about {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(2rem, 5vw, 3rem);
    margin-top: 3rem;
  }

  .stat-item-about {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .stat-number-about {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-primary);
  }

  .stat-label-about {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: var(--color-text-secondary);
    font-weight: 600;
  }

  .mission-section-about {
    background: var(--color-bg-tertiary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
    position: relative;
  }

  .mission-decoration-accent-about {
    position: absolute;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.3), transparent);
    z-index: 2;
    pointer-events: none;
    top: 60px;
    right: 10%;
  }

  .mission-decoration-glow-about {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
    filter: blur(70px);
    z-index: 1;
    pointer-events: none;
    bottom: -100px;
    right: -50px;
  }

  .mission-content-about {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3rem);
  }

  .section-header-about {
    margin-bottom: 2rem;
  }

  .section-tag-about {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(79, 70, 229, 0.1);
    color: var(--color-primary);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .section-title-about {
    font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .section-subtitle-about {
    font-size: clamp(0.95rem, 1.5vw, 1.125rem);
    color: var(--color-text-secondary);
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .mission-text-about {
    font-size: clamp(0.95rem, 1.5vw, 1.125rem);
    color: var(--color-text-secondary);
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .mission-image-about {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    display: block;
    box-shadow: var(--shadow-md);
    margin: 1rem 0 0 0;
  }

  .approach-section-about {
    background: var(--color-bg-secondary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
    position: relative;
  }

  .approach-decoration-mesh-about {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
    top: 10%;
    left: -80px;
  }

  .approach-decoration-blob-about {
    position: absolute;
    width: 260px;
    height: 280px;
    background: rgba(79, 70, 229, 0.06);
    border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
    z-index: 2;
    pointer-events: none;
    bottom: 5%;
    right: 5%;
  }

  .approach-content-about {
    position: relative;
    z-index: 10;
  }

  .process-steps-about {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
    margin-top: 2rem;
  }

  .process-step-about {
    display: flex;
    flex-direction: row;
    gap: clamp(1.5rem, 3vw, 2rem);
    align-items: flex-start;
  }

  .step-number-about {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-primary);
    flex-shrink: 0;
    min-width: 60px;
  }

  .step-content-about {
    flex: 1;
  }

  .step-title-about {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .step-text-about {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    color: var(--color-text-secondary);
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .values-section-about {
    background: var(--color-bg-tertiary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
    position: relative;
  }

  .values-decoration-glow-about {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    filter: blur(70px);
    z-index: 1;
    pointer-events: none;
    top: 50%;
    right: -80px;
    transform: translateY(-50%);
  }

  .values-decoration-line-about {
    position: absolute;
    width: 180px;
    height: 1px;
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.3), transparent);
    z-index: 2;
    pointer-events: none;
    top: 30%;
    left: 5%;
  }

  .values-content-about {
    position: relative;
    z-index: 10;
  }

  .values-cards-about {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2rem);
    justify-content: center;
    margin-top: 2.5rem;
  }

  .value-card-about {
    flex: 1 1 280px;
    max-width: 350px;
    background: var(--color-bg-primary);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid rgba(79, 70, 229, 0.1);
  }

  .value-card-about:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(79, 70, 229, 0.2);
  }

  .value-icon-about {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--color-primary);
    margin-bottom: 1rem;
  }

  .value-title-about {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .value-text-about {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: var(--color-text-secondary);
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .story-section-about {
    background: var(--color-bg-primary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
    position: relative;
  }

  .story-decoration-radiance-about {
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
    top: 20%;
    right: -80px;
  }

  .story-content-about {
    position: relative;
    z-index: 10;
  }

  .story-text-block-about {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .story-paragraph-about {
    font-size: clamp(0.95rem, 1.5vw, 1.125rem);
    color: var(--color-text-secondary);
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .featured-quote-about {
    margin-top: 2.5rem;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-left: 4px solid var(--color-primary);
    background: var(--color-bg-secondary);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  }

  .quote-text-about {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--color-text-primary);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .quote-author-about {
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    color: var(--color-text-secondary);
    font-weight: 600;
    display: block;
  }

  .features-section-about {
    background: var(--color-bg-secondary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
    position: relative;
  }

  .features-decoration-mesh-about {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, transparent 70%);
    filter: blur(70px);
    z-index: 1;
    pointer-events: none;
    bottom: -100px;
    left: -50px;
  }

  .features-decoration-accent-about {
    position: absolute;
    width: 220px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.2), transparent);
    z-index: 2;
    pointer-events: none;
    top: 15%;
    right: 15%;
  }

  .features-content-about {
    position: relative;
    z-index: 10;
  }

  .features-grid-about {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2rem);
    justify-content: center;
    margin-top: 2.5rem;
  }

  .feature-card-about {
    flex: 1 1 260px;
    max-width: 340px;
    background: var(--color-bg-tertiary);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid rgba(6, 182, 212, 0.1);
    text-align: center;
  }

  .feature-card-about:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(6, 182, 212, 0.2);
  }

  .feature-icon-about {
    font-size: clamp(2.25rem, 4vw, 2.75rem);
    color: var(--color-secondary);
    margin-bottom: 1rem;
  }

  .feature-title-about {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .feature-text-about {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: var(--color-text-secondary);
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .disclaimer-section-about {
    background: var(--color-bg-tertiary);
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(79, 70, 229, 0.1);
  }

  .disclaimer-decoration-about {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.05) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 1;
    pointer-events: none;
    top: 50%;
    left: -80px;
    transform: translateY(-50%);
  }

  .disclaimer-content-about {
    position: relative;
    z-index: 10;
    max-width: 800px;
  }

  .disclaimer-header-about {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .disclaimer-icon-about {
    font-size: 1.5rem;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
  }

  .disclaimer-title-about {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 700;
    color: var(--color-text-primary);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .disclaimer-text-about {
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    color: var(--color-text-secondary);
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  @media (min-width: 768px) {
    .mission-content-about {
      grid-template-columns: 1fr 1fr;
      align-items: center;
    }

    .process-step-about {
      gap: 2rem;
    }

    .values-cards-about {
      justify-content: space-between;
    }

    .value-card-about {
      flex: 1 1 calc(33.333% - 1.5rem);
    }

    .features-grid-about {
      justify-content: space-between;
    }

    .feature-card-about {
      flex: 1 1 calc(33.333% - 1.5rem);
    }
  }

  @media (max-width: 767px) {
    .mission-content-about {
      grid-template-columns: 1fr;
    }

    .hero-stats-about {
      gap: 1.5rem;
    }

    .process-step-about {
      gap: 1rem;
    }

    .feature-card-about,
    .value-card-about {
      flex: 1 1 100%;
      max-width: 100%;
    }

    .values-cards-about,
    .features-grid-about {
      flex-direction: column;
    }
  }

  h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  p, span, li {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

/* Privacy Page Styles */
:root {
  --color-bg-primary: #f8fafc;
  --color-bg-secondary: #e2e8f0;
  --color-bg-tertiary: #ffffff;
  --color-bg-card: #ffffff;
  --color-text-primary: #0f172a;
  --color-text-secondary: #475569;
  --color-text-muted: #94a3b8;
  --color-primary: #4f46e5;
  --color-primary-hover: #4338ca;
  --color-secondary: #06b6d4;
  --color-accent-warm: #f59e0b;
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Almarai', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.sports-legal {
  background-color: var(--color-bg-primary);
  padding: var(--space-lg) var(--space-md);
  min-height: 100vh;
}

.sports-legal .container {
  max-width: 1440px;
  margin: 0 auto;
}

.sports-legal .content {
  max-width: 800px;
  margin: 0 auto;
}

.sports-legal h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  font-weight: 700;
  line-height: 1.3;
}

.sports-legal .updated-date {
  color: var(--color-text-muted);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-family: var(--font-primary);
  margin-bottom: var(--space-xl);
}

.sports-legal .intro-section {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-sm);
}

.sports-legal .intro-section p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: 1.8;
  margin: 0;
}

.sports-legal .policy-section {
  margin-bottom: var(--space-3xl);
}

.sports-legal .policy-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
  margin-top: 0;
}

.sports-legal .policy-section p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.sports-legal .policy-section ul {
  list-style-position: inside;
  padding: 0;
  margin: var(--space-md) 0;
}

.sports-legal .policy-section li {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.sports-legal .contact-section {
  background-color: var(--color-bg-secondary);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin-top: var(--space-3xl);
}

.sports-legal .contact-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  font-weight: 700;
  margin-top: 0;
}

.sports-legal .contact-section p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.sports-legal .contact-section strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .sports-legal {
    padding: var(--space-xl) var(--space-lg);
  }

  .sports-legal .intro-section {
    padding: var(--space-2xl);
  }

  .sports-legal .contact-section {
    padding: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .sports-legal {
    padding: var(--space-2xl) var(--space-xl);
  }
}

/* Thank You Page Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
}

.thank-you-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: var(--color-bg-primary);
  direction: rtl;
}

.thank-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) var(--space-sm);
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

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

.thank-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  animation: scaleIn var(--transition-base) ease-out;
}

.success-icon svg {
  color: var(--color-primary);
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 6px rgba(79, 70, 229, 0.1));
}

.thank-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
  margin: var(--space-md) 0;
  animation: slideUp var(--transition-base) ease-out;
  animation-delay: 100ms;
}

.thank-lead {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--color-secondary);
  margin: var(--space-sm) 0;
  animation: slideUp var(--transition-base) ease-out;
  animation-delay: 150ms;
}

.thank-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: var(--space-lg) 0;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  animation: slideUp var(--transition-base) ease-out;
  animation-delay: 200ms;
}

.thank-next {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: var(--space-md) 0 var(--space-xl) 0;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  animation: slideUp var(--transition-base) ease-out;
  animation-delay: 250ms;
}

.btn-return {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  margin-top: var(--space-lg);
  background-color: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  animation: slideUp var(--transition-base) ease-out;
  animation-delay: 300ms;
}

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

.btn-return:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

.btn-return:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

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

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

@media (min-width: 768px) {
  .thank-section {
    padding: var(--space-xl) var(--space-lg);
  }

  .thank-wrapper {
    gap: var(--space-lg);
  }

  .thank-title {
    margin: var(--space-lg) 0;
  }

  .thank-description {
    margin: var(--space-xl) 0;
  }

  .btn-return {
    padding: calc(var(--space-sm) + 0.25rem) calc(var(--space-xl) + 0.5rem);
    margin-top: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-2xl);
  }

  .success-icon {
    width: 100px;
    height: 100px;
    margin-bottom: var(--space-lg);
  }

  .thank-wrapper {
    gap: var(--space-xl);
  }

  .btn-return:hover {
    box-shadow: var(--shadow-xl);
  }
}

@media (prefers-reduced-motion: reduce) {
  .success-icon,
  .thank-title,
  .thank-lead,
  .thank-description,
  .thank-next,
  .btn-return {
    animation: none;
  }

  .btn-return:hover {
    transform: none;
  }

  .btn-return:active {
    transform: none;
  }
}

/* 404 Page Styles */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-primary);
  direction: rtl;
}

.error-section {
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
  overflow: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

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

.error-visual {
  margin-bottom: var(--space-2xl);
  animation: float 3s ease-in-out infinite;
}

.volleyball-icon {
  width: clamp(80px, 20vw, 140px);
  height: clamp(80px, 20vw, 140px);
  margin: 0 auto;
  color: var(--color-primary);
  opacity: 0.9;
}

.volleyball-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(79, 70, 229, 0.15));
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  color: var(--color-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: 1;
  letter-spacing: -0.03em;
  text-shadow: 0 8px 16px rgba(79, 70, 229, 0.1);
  animation: pulse-scale 2s ease-in-out infinite;
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  font-weight: 700;
}

.error-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--color-secondary);
  margin: 0 0 var(--space-lg) 0;
  font-weight: 600;
}

.error-message {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-primary);
  line-height: 1.8;
  margin: 0 0 var(--space-md) 0;
}

.error-secondary {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0 0 var(--space-2xl) 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #ffffff;
  box-shadow: var(--shadow-md);
  margin: 0 auto !important;
  display: block;
  width: fit-content;
  padding: var(--space-sm) var(--space-2xl);
}

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

.error-hints {
  margin-top: var(--space-2xl);
  padding: var(--space-lg);
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-secondary);
}

.hint-text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-primary);
  margin: 0;
  font-weight: 500;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse-scale {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.85;
  }
}

@media (min-width: 640px) {
  .error-section {
    padding: var(--space-2xl) var(--space-lg);
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .error-visual {
    margin-bottom: var(--space-3xl);
  }

  .error-hints {
    padding: var(--space-xl) var(--space-2xl);
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-3xl) var(--space-2xl);
  }

  .container {
    padding: 0 var(--space-2xl);
  }

  .error-message {
    margin: 0 0 var(--space-lg) 0;
  }

  .btn-primary {
    margin: 0 0 var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .error-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .error-visual {
    margin-bottom: var(--space-3xl);
  }

  .error-code {
    animation: pulse-scale 2.5s ease-in-out infinite;
  }

  .error-hints {
    margin-top: var(--space-3xl);
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-visual,
  .error-code,
  .btn-primary {
    animation: none;
  }

  .btn-primary:hover {
    transform: none;
  }
}

/* Contact Page Styles */
.contact-message-us {
  width: 100%;
}

.contact-message-us-hero {
  background-color: var(--color-primary);
  padding: 4rem var(--space-md) 5rem;
  overflow: hidden;
  position: relative;
}

.contact-message-us-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.contact-message-us-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  margin-bottom: var(--space-md);
  text-align: right;
}

.contact-message-us-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
  text-align: right;
}

@media (min-width: 768px) {
  .contact-message-us-hero {
    padding: 6rem var(--space-md) 7rem;
  }
}

@media (min-width: 1024px) {
  .contact-message-us-hero {
    padding: 8rem var(--space-md) 9rem;
  }
}

.contact-message-us-main {
  background-color: var(--color-bg-primary);
  padding: 4rem var(--space-md) 5rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact-message-us-main {
    padding: 6rem var(--space-md) 7rem;
  }
}

@media (min-width: 1024px) {
  .contact-message-us-main {
    padding: 8rem var(--space-md) 9rem;
  }
}

.contact-message-us-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (min-width: 768px) {
  .contact-message-us-grid {
    flex-direction: row;
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .contact-message-us-grid {
    gap: 4rem;
  }
}

.contact-message-us-form-wrapper {
  flex: 1 1 400px;
  max-width: 500px;
}

@media (min-width: 768px) {
  .contact-message-us-form-wrapper {
    max-width: 100%;
  }
}

.contact-message-us-form-header {
  margin-bottom: var(--space-lg);
}

.contact-message-us-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  margin-bottom: var(--space-sm);
  text-align: right;
}

.contact-message-us-form-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
  text-align: right;
}

.contact-message-us-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-message-us-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-message-us-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
  font-weight: 600;
  color: var(--color-text-primary);
  text-align: right;
}

.contact-message-us-input,
.contact-message-us-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: var(--color-bg-tertiary);
  border: 1.5px solid var(--color-bg-secondary);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--color-text-primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  direction: rtl;
  text-align: right;
}

.contact-message-us-input::placeholder,
.contact-message-us-textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-message-us-input:focus,
.contact-message-us-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.contact-message-us-input:invalid:not(:placeholder-shown),
.contact-message-us-textarea:invalid:not(:placeholder-shown) {
  border-color: #ef4444;
}

.contact-message-us-textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--font-primary);
}

.contact-message-us-error {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  color: #ef4444;
  text-align: right;
  display: none;
  margin-top: -0.25rem;
}

.contact-message-us-error.show {
  display: block;
}

.contact-message-us-privacy {
  margin: var(--space-sm) 0;
  padding: var(--space-md);
  background-color: rgba(79, 70, 229, 0.05);
  border-radius: var(--radius-md);
  border-right: 3px solid var(--color-primary);
}

.contact-message-us-privacy-text {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
  text-align: right;
}

.contact-message-us-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-message-us-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-message-us-submit {
  width: 100%;
  padding: 1rem 2rem;
  background-color: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 700;
  cursor: pointer;
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  margin-top: var(--space-md);
}

.contact-message-us-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.contact-message-us-submit:active {
  transform: translateY(0);
}

.contact-message-us-submit:disabled {
  background-color: var(--color-text-muted);
  cursor: not-allowed;
  transform: none;
}

.contact-message-us-info-wrapper {
  flex: 1 1 400px;
}

.contact-message-us-info-header {
  margin-bottom: var(--space-lg);
}

.contact-message-us-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  margin-bottom: var(--space-sm);
  text-align: right;
}

.contact-message-us-info-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
  text-align: right;
}

.contact-message-us-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.contact-message-us-info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-message-us-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(79, 70, 229, 0.1);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
  order: 2;
}

.contact-message-us-info-content {
  flex: 1;
  text-align: right;
  order: 1;
}

.contact-message-us-info-label {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-xs) 0;
}

.contact-message-us-info-value {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.contact-message-us-info-value a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-message-us-info-value a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-message-us-map-placeholder {
  width: 100%;
  height: 300px;
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  border: 2px dashed var(--color-text-muted);
}

.contact-message-us-map-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.contact-message-us-map-content i {
  font-size: 3rem;
  color: var(--color-text-muted);
}

.contact-message-us-map-text {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0;
}

.contact-message-us-hours {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-bg-secondary);
}

.contact-message-us-hours-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  text-align: right;
}

.contact-message-us-hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-message-us-hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-direction: row-reverse;
}

.contact-message-us-hours-day {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.contact-message-us-hours-time {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
}

.contact-message-us-cta {
  background-color: var(--color-secondary);
  padding: 4rem var(--space-md) 5rem;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .contact-message-us-cta {
    padding: 6rem var(--space-md) 7rem;
  }
}

@media (min-width: 1024px) {
  .contact-message-us-cta {
    padding: 8rem var(--space-md) 9rem;
  }
}

.contact-message-us-cta::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.contact-message-us-cta-content {
  position: relative;
  z-index: 1;
}

.contact-message-us-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 var(--space-md) 0;
  text-align: center;
}

.contact-message-us-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.7;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .contact-message-us-grid {
    flex-direction: column;
  }

  .contact-message-us-form-wrapper,
  .contact-message-us-info-wrapper {
    max-width: 100%;
  }

  .contact-message-us-info-item {
    gap: 1.25rem;
  }

  .contact-message-us-map-placeholder {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .contact-message-us-hero {
    padding: 2.5rem var(--space-sm) 3rem;
  }

  .contact-message-us-main {
    padding: 2.5rem var(--space-sm) 3rem;
  }

  .contact-message-us-cta {
    padding: 2.5rem var(--space-sm) 3rem;
  }

  .contact-message-us-grid {
    gap: 2rem;
  }

  .contact-message-us-form {
    gap: 1.25rem;
  }

  .contact-message-us-input,
  .contact-message-us-textarea {
    padding: 0.75rem 0.875rem;
    font-size: 0.9rem;
  }

  .contact-message-us-submit {
    padding: 0.875rem 1.5rem;
  }

  .contact-message-us-info-item {
    gap: 1rem;
  }

  .contact-message-us-hours {
    padding: var(--space-md);
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-message-us-input,
  .contact-message-us-textarea,
  .contact-message-us-submit,
  .contact-message-us-privacy-link {
    transition: none;
  }

  .contact-message-us-submit:hover {
    transform: none;
  }
}