@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700&family=Playfair+Display:wght@700&display=swap");

:root {
  /* Colors */
  --color-primary: #d32f2f;
  --color-primary-dark: #b71c1c;
  --color-accent: #ff9800;
  --color-accent-light: #ffb74d;
  --color-success: #4caf50;
  --color-text-light: #ffffff;
  --color-text-dark: #1a1a1a;
  --color-text-secondary: #666666;
  --color-bg-light: #f8f9fa;
  --color-bg-dark: #0a0a0a;
  --color-border: #e0e0e0;
  --color-overlay: rgba(0, 0, 0, 0.7);

  /* Typography */
  --font-primary: "Tajawal", sans-serif;
  --font-accent: "Playfair Display", serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.25);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  /* Icon Sizes */
  --icon-sm: 24px;
  --icon-md: 32px;
  --icon-lg: 48px;
  --icon-xl: 64px;

  /* Transitions */
  --transition-fast: 200ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
}

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

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

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Typography Base Styles */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
}

h1 {
  font-family: var(--font-accent);
  font-size: 2.25rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3.75rem;
  }
}

h2 {
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  h2 {
    font-size: 3rem;
  }
}

h3 {
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  h3 {
    font-size: 1.75rem;
  }
}

@media (min-width: 1024px) {
  h3 {
    font-size: 2rem;
  }
}

h4 {
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  line-height: 1.7;
}

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

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: var(--font-weight-bold);
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  text-align: center;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

@media (min-width: 768px) {
  .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

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

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

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

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

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

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

.btn-white {
  background-color: var(--color-text-light);
  color: var(--color-text-dark);
}

.btn-white:hover {
  background-color: var(--color-bg-light);
  box-shadow: var(--shadow-lg);
}

/* Section Base Styles */
section {
  overflow: hidden;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  section {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  section {
    padding: 5rem 0;
  }
}

/* Header Styles */
header {
  background-color: var(--color-bg-dark);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 100;
  overflow: hidden;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-sm);
}

@media (min-width: 768px) {
  header .container {
    padding: var(--spacing-md);
  }
}

.logo {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.logo i {
  font-size: var(--icon-lg);
}

nav {
  display: none;
}

@media (min-width: 768px) {
  nav {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
  }
}

nav a {
  color: var(--color-text-light);
  font-weight: var(--font-weight-medium);
}

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

.header-mobile-toggle {
  background: none;
  border: none;
  color: var(--color-text-light);
  font-size: var(--icon-lg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .header-mobile-toggle {
    display: none;
  }
}

/* Footer Styles */
footer {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: var(--spacing-3xl) 0 var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

footer .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

@media (min-width: 768px) {
  footer .container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-2xl);
  }
}

@media (min-width: 1024px) {
  footer .container {
    grid-template-columns: repeat(4, 1fr);
  }
}

footer h4 {
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
}

footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: var(--spacing-xs);
  font-size: 0.875rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-lg);
  margin-top: var(--spacing-lg);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-xl);
  z-index: 99;
  overflow: hidden;
}

.cookie-banner .container {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  align-items: center;
}

@media (min-width: 768px) {
  .cookie-banner .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.cookie-banner p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-banner .btn {
  flex-shrink: 0;
}

/* Form Styles */
form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

form label {
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--spacing-xs);
  display: block;
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

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

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

.form-submit-btn,
.contact-form-submit {
  width: 100%;
}

@media (min-width: 768px) {
  .form-submit-btn,
  .contact-form-submit {
    width: auto;
  }
}

/* Cards */
.card {
  background-color: var(--color-text-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .card {
    padding: 2rem;
    gap: 1.5rem;
  }
}

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

.card-icon {
  font-size: var(--icon-xl);
  color: var(--color-primary);
}

.card h3 {
  color: var(--color-text-dark);
}

.card p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

/* Grid Utilities */
.grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .grid {
    gap: 2.5rem;
  }
}

.grid-2 {
  grid-template-columns: 1fr;
}

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

.grid-3 {
  grid-template-columns: 1fr;
}

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

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4 {
  grid-template-columns: 1fr;
}

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

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Flex Utilities */
.flex {
  display: flex;
}

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

.flex-row {
  flex-direction: row;
}

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

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

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

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

/* Spacing Utilities */
.mt-1 {
  margin-top: var(--spacing-sm);
}
.mt-2 {
  margin-top: var(--spacing-md);
}
.mt-3 {
  margin-top: var(--spacing-lg);
}
.mt-4 {
  margin-top: var(--spacing-xl);
}

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

.px-1 {
  padding-left: var(--spacing-sm);
  padding-right: var(--spacing-sm);
}
.px-2 {
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-md);
}
.px-3 {
  padding-left: var(--spacing-lg);
  padding-right: var(--spacing-lg);
}

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

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

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

.text-bold {
  font-weight: var(--font-weight-bold);
}

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

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

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

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

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

/* Background Utilities */
.bg-primary {
  background-color: var(--color-primary);
}

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

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

/* Badge */
.badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

.badge-secondary {
  background-color: var(--color-accent);
  color: var(--color-text-dark);
}

.badge-success {
  background-color: var(--color-success);
  color: var(--color-text-light);
}

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

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

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

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

.animate-in {
  animation: slideInUp var(--transition-slow) ease-out;
}

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

.animate-pulse {
  animation: pulse 2s infinite;
}

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

/* Focus States */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

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

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

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

/* Print Styles */
@media print {
  body {
    background-color: white;
    color: black;
  }

  .no-print {
    display: none;
  }
}
@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700&family=Playfair+Display:wght@600;700&display=swap");

:root {
  --color-primary: #d32f2f;
  --color-primary-dark: #b71c1c;
  --color-accent: #ff9800;
  --color-accent-light: #ffb74d;
  --color-success: #4caf50;
  --color-text-light: #ffffff;
  --color-text-dark: #1a1a1a;
  --color-text-secondary: #666666;
  --color-bg-light: #f8f9fa;
  --color-bg-dark: #0a0a0a;
  --color-border: #e0e0e0;
  --color-overlay: rgba(0, 0, 0, 0.7);
  --font-primary: "Tajawal", sans-serif;
  --font-accent: "Playfair Display", serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.25);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --icon-sm: 24px;
  --icon-md: 32px;
  --icon-lg: 48px;
  --icon-xl: 64px;
  --transition-fast: 200ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
}

/* Header Container */
.header-volley-arena {
  background-color: var(--color-bg-dark);
  border-bottom: 2px solid var(--color-primary);
  position: static;
  z-index: 100;
}

.header-volley-arena-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo/Brand */
.header-volley-arena-logo {
  flex-shrink: 0;
}

.header-volley-arena-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--color-text-light);
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  font-family: var(--font-accent);
  transition: color var(--transition-fast);
}

.header-volley-arena-brand:hover {
  color: var(--color-accent);
}

.header-volley-arena-brand i {
  font-size: 1.75rem;
  color: var(--color-primary);
}

/* Desktop Navigation */
.header-volley-arena-desktop-nav {
  display: none;
  flex-direction: row;
  gap: 2rem;
  flex-grow: 1;
  justify-content: center;
}

.header-volley-arena-nav-link {
  color: var(--color-text-light);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: var(--font-weight-medium);
  transition: color var(--transition-fast);
  position: relative;
}

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

.header-volley-arena-nav-link:hover {
  color: var(--color-accent);
}

.header-volley-arena-nav-link:hover::after {
  width: 100%;
}

/* CTA Button - Desktop */
.header-volley-arena-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-weight: var(--font-weight-bold);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.header-volley-arena-cta-button:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.header-volley-arena-cta-button:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Mobile Toggle Button */
.header-volley-arena-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-sm);
  margin: -var(--spacing-sm) -var(--spacing-sm) -var(--spacing-sm) 0;
  flex-shrink: 0;
}

.header-volley-arena-mobile-toggle span {
  width: 24px;
  height: 3px;
  background-color: var(--color-text-light);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

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

/* Mobile Menu */
.header-volley-arena-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-overlay);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  z-index: 99;
}

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

.header-volley-arena-mobile-menu::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-bg-dark);
  box-shadow: var(--shadow-xl);
}

.header-volley-arena-mobile-header {
  position: relative;
  z-index: 1;
  padding: var(--spacing-md);
  display: flex;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-volley-arena-mobile-close {
  background: none;
  border: none;
  color: var(--color-text-light);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
}

.header-volley-arena-mobile-close:hover {
  color: var(--color-primary);
}

.header-volley-arena-mobile-links {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}

.header-volley-arena-mobile-link {
  color: var(--color-text-light);
  text-decoration: none;
  padding: 1rem var(--spacing-md);
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: var(--font-weight-medium);
  transition: all var(--transition-fast);
}

.header-volley-arena-mobile-link:hover {
  background-color: rgba(211, 47, 47, 0.1);
  color: var(--color-accent);
  padding-right: 2rem;
}

.header-volley-arena-mobile-cta {
  position: relative;
  z-index: 1;
  display: block;
  margin: var(--spacing-lg) var(--spacing-md);
  padding: 1rem;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  text-decoration: none;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: var(--font-weight-bold);
  transition: all var(--transition-fast);
}

.header-volley-arena-mobile-cta:hover {
  background-color: var(--color-primary-dark);
  box-shadow: var(--shadow-md);
}

/* Tablet Breakpoint (768px) */
@media (min-width: 768px) {
  .header-volley-arena-container {
    padding: 0 var(--spacing-md);
    height: 80px;
  }

  .header-volley-arena-brand {
    font-size: 1.4rem;
  }

  .header-volley-arena-brand i {
    font-size: 2rem;
  }

  .header-volley-arena-desktop-nav {
    display: flex;
  }

  .header-volley-arena-cta-button {
    display: block;
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }

  .header-volley-arena-mobile-toggle {
    display: none;
  }

  .header-volley-arena-mobile-menu {
    display: none !important;
  }

  .header-volley-arena-nav-link {
    font-size: 1rem;
  }
}

/* Desktop Breakpoint (1024px) */
@media (min-width: 1024px) {
  .header-volley-arena-container {
    padding: 0 var(--spacing-lg);
  }

  .header-volley-arena-brand {
    font-size: 1.5rem;
  }

  .header-volley-arena-brand i {
    font-size: 2.25rem;
  }

  .header-volley-arena-nav-link {
    font-size: 1.05rem;
  }

  .header-volley-arena-cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
  }
}

/* Focus States */
.header-volley-arena-nav-link:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

.header-volley-arena-mobile-toggle:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.header-volley-arena-mobile-link:focus {
  outline: 2px inset var(--color-accent);
}

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

@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700&family=Playfair+Display:wght@700&display=swap");

:root {
  /* Colors */
  --color-primary: #d32f2f;
  --color-primary-dark: #b71c1c;
  --color-accent: #ff9800;
  --color-accent-light: #ffb74d;
  --color-success: #4caf50;
  --color-text-light: #ffffff;
  --color-text-dark: #1a1a1a;
  --color-text-secondary: #666666;
  --color-bg-light: #f8f9fa;
  --color-bg-dark: #0a0a0a;
  --color-border: #e0e0e0;
  --color-overlay: rgba(0, 0, 0, 0.7);

  /* Typography */
  --font-primary: "Tajawal", sans-serif;
  --font-accent: "Playfair Display", serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.25);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  /* Icon Sizes */
  --icon-sm: 24px;
  --icon-md: 32px;
  --icon-lg: 48px;
  --icon-xl: 64px;

  /* Transitions */
  --transition-fast: 200ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
}

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

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

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
}

h1 {
  font-family: var(--font-accent);
  font-size: 2.25rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3.75rem;
  }
}

h2 {
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  h2 {
    font-size: 3rem;
  }
}

h3 {
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  h3 {
    font-size: 1.75rem;
  }
}

@media (min-width: 1024px) {
  h3 {
    font-size: 2rem;
  }
}

h4 {
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  line-height: 1.7;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: var(--font-weight-bold);
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  text-align: center;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

@media (min-width: 768px) {
  .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

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

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

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

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

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

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

section {
  overflow: hidden;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  section {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  section {
    padding: 5rem 0;
  }
}

/* Hero Section */
.volleyball-hub .hero-section {
  background-color: var(--color-bg-dark);
}

.volleyball-hub .hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .volleyball-hub .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.volleyball-hub .hero-text h1 {
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
}

.volleyball-hub .hero-text > p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: var(--spacing-lg);
}

@media (min-width: 768px) {
  .volleyball-hub .hero-text > p {
    font-size: 1.25rem;
  }
}

.volleyball-hub .hero-ctas {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

@media (min-width: 768px) {
  .volleyball-hub .hero-ctas {
    flex-direction: row;
    gap: var(--spacing-lg);
  }
}

.volleyball-hub .hero-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.volleyball-hub .hero-photo {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

/* Stats Section */
.volleyball-hub .stats-section {
  background-color: var(--color-bg-light);
}

.volleyball-hub .stats-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .volleyball-hub .stats-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .volleyball-hub .stats-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.volleyball-hub .stat-card {
  background-color: var(--color-text-light);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-base);
}

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

.volleyball-hub .stat-number {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

@media (min-width: 768px) {
  .volleyball-hub .stat-number {
    font-size: 3rem;
  }
}

.volleyball-hub .stat-card p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

/* Featured Posts Section */
.volleyball-hub .featured-section {
  background-color: var(--color-text-light);
}

.volleyball-hub .section-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.volleyball-hub .section-header h2 {
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-md);
}

.volleyball-hub .section-header p {
  color: var(--color-text-secondary);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.volleyball-hub .posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: var(--spacing-2xl);
}

@media (min-width: 768px) {
  .volleyball-hub .posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .volleyball-hub .posts-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.volleyball-hub .post-card {
  background-color: var(--color-text-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.volleyball-hub .post-image-wrapper {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: var(--color-bg-light);
}

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

.volleyball-hub .post-card:hover .post-image {
  transform: scale(1.05);
}

.volleyball-hub .post-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .volleyball-hub .post-body {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.volleyball-hub .post-body h3 {
  color: var(--color-text-dark);
}

.volleyball-hub .post-body p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  flex-grow: 1;
}

.volleyball-hub .featured-footer {
  text-align: center;
}

/* Approach Section */
.volleyball-hub .approach-section {
  background-color: var(--color-bg-light);
}

.volleyball-hub .approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .volleyball-hub .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .volleyball-hub .approach-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.volleyball-hub .approach-card {
  background-color: var(--color-text-light);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.volleyball-hub .approach-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.volleyball-hub .approach-icon {
  font-size: var(--icon-xl);
  color: var(--color-primary);
}

.volleyball-hub .approach-card h4 {
  color: var(--color-text-dark);
}

.volleyball-hub .approach-card p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

/* Benefits Section */
.volleyball-hub .benefits-section {
  background-color: var(--color-text-light);
}

.volleyball-hub .benefits-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .volleyball-hub .benefits-content {
    grid-template-columns: 1fr 1fr;
  }
}

.volleyball-hub .benefits-text h2 {
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-md);
}

.volleyball-hub .benefits-text > p {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-lg);
}

.volleyball-hub .benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: var(--spacing-lg);
}

.volleyball-hub .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  color: var(--color-text-dark);
}

.volleyball-hub .benefit-item i {
  color: var(--color-success);
  font-size: var(--icon-md);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.volleyball-hub .benefits-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.volleyball-hub .benefits-photo {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

/* Programs Section */
.volleyball-hub .programs-section {
  background-color: var(--color-bg-light);
}

.volleyball-hub .programs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .volleyball-hub .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .volleyball-hub .programs-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.volleyball-hub .program-card {
  background-color: var(--color-text-light);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.volleyball-hub .program-icon {
  font-size: var(--icon-xl);
  color: var(--color-accent);
}

.volleyball-hub .program-card h4 {
  color: var(--color-text-dark);
}

.volleyball-hub .program-card p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

/* Why Us Section */
.volleyball-hub .why-us-section {
  background-color: var(--color-text-light);
}

.volleyball-hub .reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .volleyball-hub .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .volleyball-hub .reasons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.volleyball-hub .reason-card {
  background-color: var(--color-bg-light);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-right: 4px solid var(--color-primary);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.volleyball-hub .reason-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.volleyball-hub .reason-number {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  opacity: 0.2;
  line-height: 1;
}

.volleyball-hub .reason-card h4 {
  color: var(--color-text-dark);
  text-align: right;
}

.volleyball-hub .reason-card p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  text-align: right;
}

/* Contact Section */
.volleyball-hub .contact-section {
  background-color: var(--color-bg-dark);
}

.volleyball-hub .contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .volleyball-hub .contact-content {
    grid-template-columns: 1fr 1fr;
  }
}

.volleyball-hub .contact-text h2 {
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
}

.volleyball-hub .contact-text > p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-lg);
}

.volleyball-hub .contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: var(--spacing-lg);
}

.volleyball-hub .contact-benefit {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  color: var(--color-text-light);
}

.volleyball-hub .contact-benefit i {
  font-size: var(--icon-lg);
  color: var(--color-accent);
  flex-shrink: 0;
}

.volleyball-hub .contact-form {
  background-color: var(--color-bg-light);
  padding: 2rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .volleyball-hub .contact-form {
    padding: 2.5rem;
    gap: 1.5rem;
  }
}

.volleyball-hub .form-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.volleyball-hub .contact-form label {
  font-weight: var(--font-weight-medium);
  color: var(--color-text-dark);
}

.volleyball-hub .contact-form input,
.volleyball-hub .contact-form textarea,
.volleyball-hub .contact-form select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-text-dark);
  transition: all var(--transition-fast);
}

.volleyball-hub .contact-form input:focus,
.volleyball-hub .contact-form textarea:focus,
.volleyball-hub .contact-form select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.volleyball-hub .contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.volleyball-hub .form-agreement {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.volleyball-hub .form-agreement input[type="checkbox"] {
  width: auto;
  cursor: pointer;
}

.volleyball-hub .form-agreement label {
  margin: 0;
  font-size: 0.9rem;
  cursor: pointer;
}

.volleyball-hub .form-agreement a {
  color: var(--color-primary);
}

.volleyball-hub .form-agreement a:hover {
  text-decoration: underline;
}

.volleyball-hub .form-submit-btn {
  width: 100%;
}

@media (min-width: 768px) {
  .volleyball-hub .form-submit-btn {
    width: auto;
    align-self: flex-start;
  }
}

/* Cookie Banner */
.volleyball-hub .cookie-banner {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-xl);
  z-index: 99;
  overflow: hidden;
}

.volleyball-hub .cookie-banner .container {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  align-items: center;
}

@media (min-width: 768px) {
  .volleyball-hub .cookie-banner .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.volleyball-hub .cookie-banner p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

.volleyball-hub .cookie-actions {
  display: flex;
  gap: var(--spacing-md);
  flex-shrink: 0;
}

.volleyball-hub .cookie-actions .btn {
  margin: 0;
}

/* Accessibility */
.volleyball-hub a:focus,
.volleyball-hub button:focus,
.volleyball-hub input:focus,
.volleyball-hub textarea:focus,
.volleyball-hub select:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

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

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

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

.volleyball-hub section {
  animation: fadeIn var(--transition-slow) ease-out;
}

/* Footer Component Styles */
.footer {
  background-color: var(--color-bg-dark);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .footer {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding: 6rem 0;
  }
}

.footer .container {
  padding: 0 var(--spacing-sm);
}

@media (min-width: 768px) {
  .footer .container {
    padding: 0 var(--spacing-md);
  }
}

/* Footer Content Layout */
.footer-content {
  display: block;
}
.footer .container {
  display: block !important;
}

@media (min-width: 1024px) {
  .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
  }
}

/* About Section */
.footer-about {
  display: block;
  margin-bottom: var(--spacing-lg);
}

@media (min-width: 1024px) {
  .footer-about {
    margin-bottom: 0;
    grid-column: 1 / 2;
  }
}

.footer-about-title {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .footer-about-title {
    font-size: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .footer-about-title {
    font-size: 1.5rem;
  }
}

.footer-about-text {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: var(--font-weight-regular);
  color: #d0d0d0;
  line-height: 1.7;
  text-align: right;
}

@media (min-width: 768px) {
  .footer-about-text {
    font-size: 0.95rem;
  }
}

@media (min-width: 1024px) {
  .footer-about-text {
    font-size: 0.875rem;
  }
}

/* Navigation Section */
.footer-nav-section {
  display: block;
  margin-bottom: var(--spacing-lg);
}

@media (min-width: 1024px) {
  .footer-nav-section {
    margin-bottom: 0;
    grid-column: 2 / 3;
  }
}

.footer-nav-title {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
  text-align: right;
}

@media (min-width: 768px) {
  .footer-nav-title {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .footer-nav-title {
    font-size: 1.125rem;
  }
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer-link {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: var(--font-weight-regular);
  color: #b0b0b0;
  text-decoration: none;
  transition: all var(--transition-fast);
  text-align: right;
  display: inline-block;
}

@media (min-width: 768px) {
  .footer-link {
    font-size: 0.95rem;
  }
}

@media (min-width: 1024px) {
  .footer-link {
    font-size: 0.875rem;
  }
}

.footer-link:hover {
  color: var(--color-primary);
  padding-right: var(--spacing-xs);
}

.footer-link:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

/* Legal Section */
.footer-legal-section {
  display: block;
  margin-bottom: var(--spacing-lg);
}

@media (min-width: 1024px) {
  .footer-legal-section {
    margin-bottom: 0;
    grid-column: 3 / 4;
  }
}

.footer-legal-title {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
  text-align: right;
}

@media (min-width: 768px) {
  .footer-legal-title {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .footer-legal-title {
    font-size: 1.125rem;
  }
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer-legal-link {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: var(--font-weight-regular);
  color: #b0b0b0;
  text-decoration: none;
  transition: all var(--transition-fast);
  text-align: right;
  display: inline-block;
}

@media (min-width: 768px) {
  .footer-legal-link {
    font-size: 0.95rem;
  }
}

@media (min-width: 1024px) {
  .footer-legal-link {
    font-size: 0.875rem;
  }
}

.footer-legal-link:hover {
  color: var(--color-accent);
  padding-right: var(--spacing-xs);
}

.footer-legal-link:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

/* Copyright Section */
.footer-copyright {
  display: block;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .footer-copyright {
    padding-top: var(--spacing-xl);
  }
}

@media (min-width: 1024px) {
  .footer-copyright {
    grid-column: 1 / -1;
    padding-top: var(--spacing-lg);
  }
}

.footer-copyright-text {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: var(--font-weight-regular);
  color: #909090;
  text-align: center;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .footer-copyright-text {
    font-size: 0.875rem;
  }
}

@media (min-width: 1024px) {
  .footer-copyright-text {
    font-size: 0.8rem;
  }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .footer-link,
  .footer-legal-link {
    transition: none;
  }
}

/* Category Page Styles */
@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700&family=Playfair+Display:wght@700&display=swap");

:root {
  --color-primary: #d32f2f;
  --color-primary-dark: #b71c1c;
  --color-accent: #ff9800;
  --color-accent-light: #ffb74d;
  --color-success: #4caf50;
  --color-text-light: #ffffff;
  --color-text-dark: #1a1a1a;
  --color-text-secondary: #666666;
  --color-bg-light: #f8f9fa;
  --color-bg-dark: #0a0a0a;
  --color-border: #e0e0e0;

  --font-primary: "Tajawal", sans-serif;
  --font-accent: "Playfair Display", serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.25);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  --icon-sm: 24px;
  --icon-md: 32px;
  --icon-lg: 48px;
  --icon-xl: 64px;

  --transition-fast: 200ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
}

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

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

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Category Hero Section */
.category-hero-volleyball-training-egypt {
  background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
  overflow: hidden;
  padding: 4rem 0;
}

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

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

.hero-content-volleyball-training-egypt {
  text-align: center;
  animation: slideInUp var(--transition-slow) ease-out;
}

.category-hero-volleyball-training-egypt h1 {
  font-family: var(--font-accent);
  font-size: 2.5rem;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-bold);
}

@media (min-width: 768px) {
  .category-hero-volleyball-training-egypt h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .category-hero-volleyball-training-egypt h1 {
    font-size: 4rem;
    margin-bottom: var(--spacing-xl);
  }
}

.category-hero-volleyball-training-egypt p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .category-hero-volleyball-training-egypt p {
    font-size: 1.125rem;
  }
}

/* Posts Grid Section */
.posts-grid-section-volleyball-training-egypt {
  background-color: var(--color-bg-light);
  overflow: hidden;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .posts-grid-section-volleyball-training-egypt {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .posts-grid-section-volleyball-training-egypt {
    padding: 6rem 0;
  }
}

.posts-grid-volleyball-training-egypt {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .posts-grid-volleyball-training-egypt {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .posts-grid-volleyball-training-egypt {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

/* Card Styling */
.card-volleyball-training-egypt {
  background-color: var(--color-text-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
  animation: slideInUp var(--transition-slow) ease-out;
}

@media (min-width: 768px) {
  .card-volleyball-training-egypt {
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .card-volleyball-training-egypt {
    gap: 1.5rem;
  }
}

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

.card-volleyball-training-egypt img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .card-volleyball-training-egypt img {
    height: 280px;
  }
}

@media (min-width: 1024px) {
  .card-volleyball-training-egypt img {
    height: 300px;
  }
}

.card-volleyball-training-egypt h3 {
  font-size: 1.25rem;
  color: var(--color-text-dark);
  font-weight: var(--font-weight-bold);
  padding: 0 1rem;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .card-volleyball-training-egypt h3 {
    font-size: 1.5rem;
    padding: 0 1.25rem;
  }
}

@media (min-width: 1024px) {
  .card-volleyball-training-egypt h3 {
    font-size: 1.75rem;
    padding: 0 1.5rem;
  }
}

.card-volleyball-training-egypt p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .card-volleyball-training-egypt p {
    font-size: 0.95rem;
    padding: 0 1.25rem;
  }
}

@media (min-width: 1024px) {
  .card-volleyball-training-egypt p {
    font-size: 1rem;
    padding: 0 1.5rem;
  }
}

.card-volleyball-training-egypt a {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 0.75rem 1rem;
  margin: 0 1rem 1rem 1rem;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-bold);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  text-decoration: none;
}

@media (min-width: 768px) {
  .card-volleyball-training-egypt a {
    padding: 0.85rem 1.5rem;
    margin: 0 1.25rem 1.25rem 1.25rem;
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .card-volleyball-training-egypt a {
    padding: 1rem 2rem;
    margin: 0 1.5rem 1.5rem 1.5rem;
  }
}

.card-volleyball-training-egypt a:hover {
  background-color: var(--color-primary-dark);
  transform: translateX(-4px);
  box-shadow: var(--shadow-md);
}

/* Additional Section 1 */
.additional-section-1-volleyball-training-egypt {
  background-color: var(--color-text-light);
  overflow: hidden;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .additional-section-1-volleyball-training-egypt {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .additional-section-1-volleyball-training-egypt {
    padding: 6rem 0;
  }
}

.additional-section-1-volleyball-training-egypt h2 {
  font-size: 2rem;
  color: var(--color-text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .additional-section-1-volleyball-training-egypt h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .additional-section-1-volleyball-training-egypt h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
  }
}

.tips-list-volleyball-training-egypt {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .tips-list-volleyball-training-egypt {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .tips-list-volleyball-training-egypt {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.tip-item-volleyball-training-egypt {
  padding: 1.5rem;
  background-color: #f5f5f5;
  border-radius: var(--radius-lg);
  border-right: 4px solid var(--color-primary);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .tip-item-volleyball-training-egypt {
    padding: 2rem;
  }
}

.tip-item-volleyball-training-egypt:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.tip-item-volleyball-training-egypt i {
  font-size: var(--icon-lg);
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
  display: block;
}

.tip-item-volleyball-training-egypt h4 {
  font-size: 1.125rem;
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-sm);
  font-weight: var(--font-weight-bold);
}

@media (min-width: 768px) {
  .tip-item-volleyball-training-egypt h4 {
    font-size: 1.25rem;
  }
}

.tip-item-volleyball-training-egypt p {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .tip-item-volleyball-training-egypt p {
    font-size: 0.95rem;
  }
}

/* Additional Section 2 */
.additional-section-2-volleyball-training-egypt {
  background-color: #f0f0f0;
  overflow: hidden;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .additional-section-2-volleyball-training-egypt {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .additional-section-2-volleyball-training-egypt {
    padding: 6rem 0;
  }
}

.additional-section-2-volleyball-training-egypt h2 {
  font-size: 2rem;
  color: var(--color-text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .additional-section-2-volleyball-training-egypt h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .additional-section-2-volleyball-training-egypt h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
  }
}

.standards-grid-volleyball-training-egypt {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .standards-grid-volleyball-training-egypt {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .standards-grid-volleyball-training-egypt {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.standard-item-volleyball-training-egypt {
  background-color: var(--color-text-light);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .standard-item-volleyball-training-egypt {
    padding: 2rem;
  }
}

.standard-item-volleyball-training-egypt:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.standard-item-volleyball-training-egypt h4 {
  font-size: 1.125rem;
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-bold);
}

@media (min-width: 768px) {
  .standard-item-volleyball-training-egypt h4 {
    font-size: 1.25rem;
  }
}

.standard-item-volleyball-training-egypt ul {
  list-style: none;
  padding: 0;
}

.standard-item-volleyball-training-egypt li {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  padding: 0.5rem 0;
  padding-right: 1.5rem;
  position: relative;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .standard-item-volleyball-training-egypt li {
    font-size: 0.95rem;
  }
}

.standard-item-volleyball-training-egypt li:before {
  content: "✓";
  position: absolute;
  right: 0;
  color: var(--color-success);
  font-weight: bold;
  font-size: 1.1rem;
}

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

/* Accessibility */
a:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

img:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Post Page 1 Styles */
/* CSS Isolation - Complete scoping with attacking-defensive-wall-development prefix */
.post-attacking-defensive-wall-development {
  width: 100%;
  overflow: hidden;
}

/* Breadcrumbs Navigation */
.attacking-defensive-wall-development-breadcrumbs {
  background-color: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border);
  padding: 1.5rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .attacking-defensive-wall-development-breadcrumbs {
    padding: 2rem 0;
  }
}

.attacking-defensive-wall-development-breadcrumbs .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.attacking-defensive-wall-development-breadcrumbs a,
.attacking-defensive-wall-development-breadcrumbs span {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

@media (min-width: 768px) {
  .attacking-defensive-wall-development-breadcrumbs a,
  .attacking-defensive-wall-development-breadcrumbs span {
    font-size: 0.95rem;
  }
}

.attacking-defensive-wall-development-breadcrumbs a {
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
}

.attacking-defensive-wall-development-breadcrumbs a:hover {
  text-decoration: underline;
}

/* Hero Section */
.attacking-defensive-wall-development-hero {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .attacking-defensive-wall-development-hero {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .attacking-defensive-wall-development-hero {
    padding: 6rem 0;
  }
}

.attacking-defensive-wall-development-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .attacking-defensive-wall-development-hero-content {
    gap: 2rem;
  }
}

.attacking-defensive-wall-development-hero h1 {
  color: var(--color-text-dark);
  font-size: 2.25rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .attacking-defensive-wall-development-hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .attacking-defensive-wall-development-hero h1 {
    font-size: 3.75rem;
  }
}

.attacking-defensive-wall-development-lead {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 650px;
}

@media (min-width: 768px) {
  .attacking-defensive-wall-development-lead {
    font-size: 1.125rem;
  }
}

.attacking-defensive-wall-development-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--color-text-secondary);
  font-size: 0.875rem;
}

/* Content Sections */
.attacking-defensive-wall-development-content-1 {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .attacking-defensive-wall-development-content-1 {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .attacking-defensive-wall-development-content-1 {
    padding: 5rem 0;
  }
}

.attacking-defensive-wall-development-content-1-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .attacking-defensive-wall-development-content-1-inner {
    gap: 2.5rem;
  }
}

.attacking-defensive-wall-development-content-1 h2 {
  color: var(--color-text-dark);
  font-size: 1.875rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .attacking-defensive-wall-development-content-1 h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .attacking-defensive-wall-development-content-1 h2 {
    font-size: 3rem;
  }
}

.attacking-defensive-wall-development-content-1 p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .attacking-defensive-wall-development-content-1 p {
    font-size: 1rem;
  }
}

.attacking-defensive-wall-development-content-2 {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .attacking-defensive-wall-development-content-2 {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .attacking-defensive-wall-development-content-2 {
    padding: 5rem 0;
  }
}

.attacking-defensive-wall-development-content-2-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .attacking-defensive-wall-development-content-2-inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.attacking-defensive-wall-development-content-2 h2 {
  color: var(--color-text-dark);
  font-size: 1.875rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .attacking-defensive-wall-development-content-2 h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .attacking-defensive-wall-development-content-2 h2 {
    font-size: 3rem;
  }
}

.attacking-defensive-wall-development-content-2 p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .attacking-defensive-wall-development-content-2 p {
    font-size: 1rem;
  }
}

.attacking-defensive-wall-development-tips-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .attacking-defensive-wall-development-tips-list {
    gap: 1.25rem;
  }
}

.attacking-defensive-wall-development-tips-list li {
  display: flex;
  gap: 1rem;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .attacking-defensive-wall-development-tips-list li {
    font-size: 1rem;
  }
}

.attacking-defensive-wall-development-tips-list li::before {
  content: "✓";
  flex-shrink: 0;
  color: var(--color-success);
  font-weight: var(--font-weight-bold);
  font-size: 1.25rem;
}

.attacking-defensive-wall-development-image {
  width: 100%;
  max-height: 400px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

/* Content Section 3 */
.attacking-defensive-wall-development-content-3 {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .attacking-defensive-wall-development-content-3 {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .attacking-defensive-wall-development-content-3 {
    padding: 5rem 0;
  }
}

.attacking-defensive-wall-development-content-3-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .attacking-defensive-wall-development-content-3-inner {
    gap: 2.5rem;
  }
}

.attacking-defensive-wall-development-content-3 h2 {
  color: var(--color-text-dark);
  font-size: 1.875rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .attacking-defensive-wall-development-content-3 h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .attacking-defensive-wall-development-content-3 h2 {
    font-size: 3rem;
  }
}

.attacking-defensive-wall-development-content-3 h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .attacking-defensive-wall-development-content-3 h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
}

.attacking-defensive-wall-development-content-3 p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .attacking-defensive-wall-development-content-3 p {
    font-size: 1rem;
  }
}

/* Disclaimer Section */
.attacking-defensive-wall-development-disclaimer {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .attacking-defensive-wall-development-disclaimer {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .attacking-defensive-wall-development-disclaimer {
    padding: 5rem 0;
  }
}

.attacking-defensive-wall-development-disclaimer-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: var(--color-bg-light);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-right: 4px solid var(--color-primary);
}

@media (min-width: 768px) {
  .attacking-defensive-wall-development-disclaimer-content {
    padding: 2.5rem;
    gap: 1.75rem;
  }
}

.attacking-defensive-wall-development-disclaimer-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.attacking-defensive-wall-development-disclaimer-icon {
  font-size: var(--icon-lg);
  color: var(--color-primary);
  flex-shrink: 0;
}

.attacking-defensive-wall-development-disclaimer-title {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
}

@media (min-width: 768px) {
  .attacking-defensive-wall-development-disclaimer-title {
    font-size: 1.25rem;
  }
}

.attacking-defensive-wall-development-disclaimer-text {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .attacking-defensive-wall-development-disclaimer-text {
    font-size: 1rem;
  }
}

/* Related Posts Section */
.attacking-defensive-wall-development-related {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .attacking-defensive-wall-development-related {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .attacking-defensive-wall-development-related {
    padding: 5rem 0;
  }
}

.attacking-defensive-wall-development-related-header {
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .attacking-defensive-wall-development-related-header {
    margin-bottom: 4rem;
  }
}

.attacking-defensive-wall-development-related h2 {
  color: var(--color-text-dark);
  font-size: 1.875rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .attacking-defensive-wall-development-related h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .attacking-defensive-wall-development-related h2 {
    font-size: 3rem;
  }
}

.attacking-defensive-wall-development-related-desc {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .attacking-defensive-wall-development-related-desc {
    font-size: 1rem;
  }
}

.attacking-defensive-wall-development-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .attacking-defensive-wall-development-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .attacking-defensive-wall-development-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.attacking-defensive-wall-development-related-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.attacking-defensive-wall-development-related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.attacking-defensive-wall-development-related-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.attacking-defensive-wall-development-related-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

@media (min-width: 768px) {
  .attacking-defensive-wall-development-related-card-content {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.attacking-defensive-wall-development-related-card h3 {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .attacking-defensive-wall-development-related-card h3 {
    font-size: 1.25rem;
  }
}

.attacking-defensive-wall-development-related-card p {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  line-height: 1.7;
  flex: 1;
}

@media (min-width: 768px) {
  .attacking-defensive-wall-development-related-card p {
    font-size: 0.95rem;
  }
}

.attacking-defensive-wall-development-related-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.attacking-defensive-wall-development-related-card-link:hover {
  gap: 0.75rem;
  color: var(--color-primary-dark);
}

.attacking-defensive-wall-development-related-card-link::after {
  content: "→";
}

/* Post Page 2 Styles */
/* ============================================
   VOLLEYBALL PASSING RECEIVING FUNDAMENTALS
   Complete CSS Isolation - Zero Conflicts
   ============================================ */

.post-volleyball-passing-receiving-fundamentals {
  width: 100%;
}

/* ============================================
   BREADCRUMBS
   ============================================ */

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-breadcrumbs {
  background-color: #f8f9fa;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-breadcrumbs {
    padding: 1.25rem 0;
  }
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-breadcrumbs-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-breadcrumb-link {
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-breadcrumb-link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-breadcrumb-separator {
  color: var(--color-text-secondary);
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-breadcrumb-current {
  color: var(--color-text-secondary);
  font-weight: var(--font-weight-medium);
}

/* ============================================
   HERO SECTION
   ============================================ */

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-hero {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-hero {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-hero {
    padding: 5rem 0;
  }
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-hero-title {
  color: var(--color-text-dark);
  font-size: 2rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-hero-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-hero-title {
    font-size: 3rem;
  }
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-hero-lead {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 650px;
}

@media (min-width: 768px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-hero-lead {
    font-size: 1.125rem;
  }
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-meta-item
  i {
  color: var(--color-primary);
  font-size: var(--icon-md);
}

/* ============================================
   INTRODUCTION SECTION
   ============================================ */

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-intro {
  background-color: #f8f9fa;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-intro {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-intro {
    padding: 5rem 0;
  }
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-intro-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-intro-title {
  color: var(--color-text-dark);
  font-size: 1.75rem;
}

@media (min-width: 768px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-intro-title {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-intro-title {
    font-size: 2.25rem;
  }
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-intro-text {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-intro-text {
    font-size: 1rem;
  }
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-intro-highlight {
  background-color: #ffffff;
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-intro-highlight {
    padding: 2rem;
  }
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-intro-highlight
  i {
  font-size: var(--icon-lg);
  color: var(--color-primary);
  flex-shrink: 0;
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-highlight-text {
  color: var(--color-text-dark);
  font-weight: var(--font-weight-medium);
  line-height: 1.6;
}

/* ============================================
   TECHNICAL SECTION
   ============================================ */

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-technical {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-technical {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-technical {
    padding: 5rem 0;
  }
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-technical-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-technical-title {
  color: var(--color-text-dark);
  font-size: 1.75rem;
}

@media (min-width: 768px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-technical-title {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-technical-title {
    font-size: 2.25rem;
  }
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-technical-image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-technical-img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  display: block;
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-technical-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-technical-subtitle {
  color: var(--color-text-dark);
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-technical-subtitle {
    font-size: 1.75rem;
  }
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-technical-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-list-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-list-item {
    gap: 1.5rem;
  }
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-list-icon {
  font-size: var(--icon-lg);
  color: var(--color-success);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-list-content
  h4 {
  color: var(--color-text-dark);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-list-content
  p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   RECEPTION SECTION
   ============================================ */

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-reception {
  background-color: #f8f9fa;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-reception {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-reception {
    padding: 5rem 0;
  }
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-reception-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-reception-title {
  color: var(--color-text-dark);
  font-size: 1.75rem;
}

@media (min-width: 768px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-reception-title {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-reception-title {
    font-size: 2.25rem;
  }
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-reception-intro {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-reception-intro {
    font-size: 1rem;
  }
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-reception-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-reception-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-reception-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-reception-card {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-reception-card {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-reception-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-card-icon {
  font-size: var(--icon-xl);
  color: var(--color-primary);
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-card-title {
  color: var(--color-text-dark);
  font-size: 1.25rem;
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-card-text {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   TRAINING PROGRAMS SECTION
   ============================================ */

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-programs {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-programs {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-programs {
    padding: 5rem 0;
  }
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-programs-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-programs-title {
  color: var(--color-text-dark);
  font-size: 1.75rem;
}

@media (min-width: 768px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-programs-title {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-programs-title {
    font-size: 2.25rem;
  }
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-programs-intro {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-programs-intro {
    font-size: 1rem;
  }
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-programs-image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-programs-img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  display: block;
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-programs-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-programs-subtitle {
  color: var(--color-text-dark);
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-programs-subtitle {
    font-size: 1.75rem;
  }
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-numbered-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  counter-reset: item;
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-numbered-item {
  display: flex;
  gap: 1rem;
}

@media (min-width: 768px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-numbered-item {
    gap: 1.5rem;
  }
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-numbered-item::before {
  content: counter(item);
  counter-increment: item;
  background-color: var(--color-primary);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  flex-shrink: 0;
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-item-title {
  color: var(--color-text-dark);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-item-text {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   DISCLAIMER SECTION
   ============================================ */

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-disclaimer {
  background-color: #f8f9fa;
  padding: 3rem 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-disclaimer {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-disclaimer {
    padding: 5rem 0;
  }
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-disclaimer-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-disclaimer-icon {
  font-size: var(--icon-xl);
  color: var(--color-primary);
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-disclaimer-title {
  color: var(--color-text-dark);
  font-size: 1.25rem;
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-disclaimer-text {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ============================================
   TIPS SECTION
   ============================================ */

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-tips {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-tips {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-tips {
    padding: 5rem 0;
  }
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-tips-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-tips-title {
  color: var(--color-text-dark);
  font-size: 1.75rem;
}

@media (min-width: 768px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-tips-title {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-tips-title {
    font-size: 2.25rem;
  }
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-tips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-tips-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-tips-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-tip-card {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-tip-card {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-tip-card:hover {
  background-color: #ffffff;
  box-shadow: var(--shadow-md);
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-tip-number {
  background-color: var(--color-primary);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  font-size: 1.25rem;
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-tip-title {
  color: var(--color-text-dark);
  font-size: 1.1rem;
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-tip-text {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   CONCLUSION SECTION
   ============================================ */

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-conclusion {
  background-color: #f8f9fa;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-conclusion {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-conclusion {
    padding: 5rem 0;
  }
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-conclusion-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-conclusion-title {
  color: var(--color-text-dark);
  font-size: 1.75rem;
}

@media (min-width: 768px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-conclusion-title {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-conclusion-title {
    font-size: 2.25rem;
  }
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-conclusion-text {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-conclusion-text {
    font-size: 1rem;
  }
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-summary-box {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-summary-box {
    padding: 2rem;
  }
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-summary-title {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-summary-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-summary-list
  li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-summary-list
  li::before {
  content: "✓";
  color: var(--color-success);
  font-weight: var(--font-weight-bold);
  flex-shrink: 0;
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-conclusion-closing {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
}

@media (min-width: 768px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-conclusion-closing {
    font-size: 1rem;
  }
}

/* ============================================
   RELATED POSTS SECTION
   ============================================ */

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-related {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-related {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-related {
    padding: 5rem 0;
  }
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-related-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-related-title {
  color: var(--color-text-dark);
  font-size: 1.75rem;
}

@media (min-width: 768px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-related-title {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-related-title {
    font-size: 2.25rem;
  }
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-related-subtitle {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-related-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-card-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #f8f9fa;
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-card-body {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-card-post-title {
  color: var(--color-text-dark);
  font-size: 1.1rem;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .post-volleyball-passing-receiving-fundamentals
    .volleyball-passing-receiving-fundamentals-card-post-title {
    font-size: 1.25rem;
  }
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-card-post-desc {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
  flex-grow: 1;
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-card-link {
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-card-link:hover {
  color: var(--color-primary-dark);
}

.post-volleyball-passing-receiving-fundamentals
  .volleyball-passing-receiving-fundamentals-card-link
  i {
  font-size: var(--icon-sm);
}

/* Post Page 3 Styles */
/* CSS Isolation: All styles scoped to this post */
.post-fitness-programs-injury-prevention {
  width: 100%;
  overflow: hidden;
}

/* Breadcrumbs Navigation */
.fitness-programs-injury-prevention-breadcrumbs {
  background-color: var(--color-bg-light);
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-breadcrumbs {
    padding: 1.5rem 0;
  }
}

.fitness-programs-injury-prevention-breadcrumbs .container {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.fitness-programs-injury-prevention-breadcrumbs a {
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
}

.fitness-programs-injury-prevention-breadcrumbs a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.fitness-programs-injury-prevention-breadcrumbs span {
  color: var(--color-text-secondary);
  font-weight: var(--font-weight-medium);
}

/* Hero Section */
.fitness-programs-injury-prevention-hero {
  background-color: var(--color-bg-dark);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-hero {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .fitness-programs-injury-prevention-hero {
    padding: 5rem 0;
  }
}

.fitness-programs-injury-prevention-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-hero-content {
    gap: 2rem;
  }
}

.fitness-programs-injury-prevention-hero h1 {
  color: var(--color-text-light);
  font-size: 2.25rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .fitness-programs-injury-prevention-hero h1 {
    font-size: 3.75rem;
  }
}

.fitness-programs-injury-prevention-lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-lead {
    font-size: 1.125rem;
  }
}

.fitness-programs-injury-prevention-meta {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-meta {
    gap: 2rem;
  }
}

/* Content Section 1 */
.fitness-programs-injury-prevention-content-1 {
  background-color: var(--color-text-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-content-1 {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .fitness-programs-injury-prevention-content-1 {
    padding: 5rem 0;
  }
}

.fitness-programs-injury-prevention-content-1-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-content-1-content {
    gap: 2rem;
  }
}

.fitness-programs-injury-prevention-content-1 h2 {
  color: var(--color-text-dark);
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-content-1 h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .fitness-programs-injury-prevention-content-1 h2 {
    font-size: 3rem;
  }
}

.fitness-programs-injury-prevention-content-1 p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-content-1 p {
    font-size: 1rem;
  }
}

/* Content Section 2 */
.fitness-programs-injury-prevention-content-2 {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-content-2 {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .fitness-programs-injury-prevention-content-2 {
    padding: 5rem 0;
  }
}

.fitness-programs-injury-prevention-content-2-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-content-2-content {
    gap: 2rem;
  }
}

.fitness-programs-injury-prevention-content-2 h2 {
  color: var(--color-text-dark);
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-content-2 h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .fitness-programs-injury-prevention-content-2 h2 {
    font-size: 3rem;
  }
}

.fitness-programs-injury-prevention-content-2 p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-content-2 p {
    font-size: 1rem;
  }
}

.fitness-programs-injury-prevention-content-2 h3 {
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-content-2 h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
}

.fitness-programs-injury-prevention-content-2 ul {
  margin-right: 1.5rem;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-content-2 ul {
    margin-right: 2rem;
    font-size: 1rem;
  }
}

.fitness-programs-injury-prevention-content-2 li {
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-content-2 li {
    margin-bottom: 1rem;
  }
}

/* Content Section 3 */
.fitness-programs-injury-prevention-content-3 {
  background-color: var(--color-text-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-content-3 {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .fitness-programs-injury-prevention-content-3 {
    padding: 5rem 0;
  }
}

.fitness-programs-injury-prevention-content-3-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-content-3-content {
    gap: 2rem;
  }
}

.fitness-programs-injury-prevention-content-3 h2 {
  color: var(--color-text-dark);
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-content-3 h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .fitness-programs-injury-prevention-content-3 h2 {
    font-size: 3rem;
  }
}

.fitness-programs-injury-prevention-content-3 p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-content-3 p {
    font-size: 1rem;
  }
}

.fitness-programs-injury-prevention-content-3 h3 {
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-content-3 h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
}

.fitness-programs-injury-prevention-highlight-box {
  background-color: var(--color-bg-light);
  border-right: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-highlight-box {
    padding: 2rem;
    margin: 2rem 0;
  }
}

.fitness-programs-injury-prevention-highlight-box p {
  color: var(--color-text-dark);
  font-weight: var(--font-weight-medium);
  margin: 0;
}

/* Disclaimer Section */
.fitness-programs-injury-prevention-disclaimer {
  background-color: #f0f4f8;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-disclaimer {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .fitness-programs-injury-prevention-disclaimer {
    padding: 5rem 0;
  }
}

.fitness-programs-injury-prevention-disclaimer-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-disclaimer-content {
    gap: 2rem;
  }
}

.fitness-programs-injury-prevention-disclaimer-header {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.fitness-programs-injury-prevention-disclaimer-icon {
  color: var(--color-primary);
  font-size: var(--icon-lg);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.fitness-programs-injury-prevention-disclaimer h2 {
  color: var(--color-text-dark);
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-disclaimer h2 {
    font-size: 1.875rem;
  }
}

.fitness-programs-injury-prevention-disclaimer p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-disclaimer p {
    font-size: 1rem;
  }
}

/* Content Section 4 */
.fitness-programs-injury-prevention-content-4 {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-content-4 {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .fitness-programs-injury-prevention-content-4 {
    padding: 5rem 0;
  }
}

.fitness-programs-injury-prevention-content-4-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-content-4-content {
    gap: 2rem;
  }
}

.fitness-programs-injury-prevention-content-4 h2 {
  color: var(--color-text-dark);
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-content-4 h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .fitness-programs-injury-prevention-content-4 h2 {
    font-size: 3rem;
  }
}

.fitness-programs-injury-prevention-content-4 p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-content-4 p {
    font-size: 1rem;
  }
}

.fitness-programs-injury-prevention-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
  }
}

@media (min-width: 1024px) {
  .fitness-programs-injury-prevention-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.fitness-programs-injury-prevention-step-card {
  background-color: var(--color-text-light);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-step-card {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.fitness-programs-injury-prevention-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border-radius: 50%;
  font-weight: var(--font-weight-bold);
  font-size: 1.25rem;
}

.fitness-programs-injury-prevention-step-card h3 {
  color: var(--color-text-dark);
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-step-card h3 {
    font-size: 1.25rem;
  }
}

.fitness-programs-injury-prevention-step-card p {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  margin: 0;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-step-card p {
    font-size: 0.95rem;
  }
}

/* Related Posts Section */
.fitness-programs-injury-prevention-related {
  background-color: var(--color-text-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-related {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .fitness-programs-injury-prevention-related {
    padding: 5rem 0;
  }
}

.fitness-programs-injury-prevention-related-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-related-content {
    gap: 2rem;
  }
}

.fitness-programs-injury-prevention-related h2 {
  color: var(--color-text-dark);
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-related h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .fitness-programs-injury-prevention-related h2 {
    font-size: 3rem;
  }
}

.fitness-programs-injury-prevention-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .fitness-programs-injury-prevention-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.fitness-programs-injury-prevention-related-card {
  background-color: var(--color-bg-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  height: 100%;
}

.fitness-programs-injury-prevention-related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.fitness-programs-injury-prevention-related-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background-color: #e0e0e0;
}

.fitness-programs-injury-prevention-related-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-related-card-body {
    padding: 1.5rem;
    gap: 1.25rem;
  }
}

.fitness-programs-injury-prevention-related-card h3 {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  line-height: 1.4;
  margin: 0;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-related-card h3 {
    font-size: 1.25rem;
  }
}

.fitness-programs-injury-prevention-related-card p {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-related-card p {
    font-size: 0.95rem;
  }
}

.fitness-programs-injury-prevention-related-card-link {
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

.fitness-programs-injury-prevention-related-card-link:hover {
  color: var(--color-primary-dark);
}

/* Image Styling */
.fitness-programs-injury-prevention-content-image {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background-color: #e0e0e0;
}

@media (min-width: 768px) {
  .fitness-programs-injury-prevention-content-image {
    max-height: 400px;
  }
}

/* Post Page 4 Styles */
@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700&family=Playfair+Display:wght@700&display=swap");

.post-team-coordination-integrated-training {
  width: 100%;
  overflow-x: hidden;
}

/* Breadcrumbs */
.post-team-coordination-integrated-training
  .team-coordination-integrated-training-breadcrumbs {
  background-color: #f8f9fa;
  padding: 1rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-breadcrumbs {
    padding: 1.5rem 0;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-breadcrumbs
  .container {
  padding: 0 1rem;
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-breadcrumbs
  nav {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-breadcrumbs
  a {
  color: #d32f2f;
  text-decoration: none;
  transition: color 200ms ease;
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-breadcrumbs
  a:hover {
  color: #b71c1c;
  text-decoration: underline;
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-breadcrumbs
  span {
  color: #666666;
}

/* Hero Section */
.post-team-coordination-integrated-training
  .team-coordination-integrated-training-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-hero {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-hero {
    padding: 5rem 0;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-hero-content {
    gap: 2rem;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-hero
  h1 {
  color: #ffffff;
  font-size: 2.25rem;
  line-height: 1.3;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-hero
    h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-hero
    h1 {
    font-size: 3.75rem;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-hero-lead {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-hero-lead {
    font-size: 1.125rem;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-hero-meta {
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  flex-wrap: wrap;
}

/* Content Section 1 */
.post-team-coordination-integrated-training
  .team-coordination-integrated-training-content-1 {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-content-1 {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-content-1 {
    padding: 5rem 0;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-content-1-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-content-1-inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-content-1
  h2 {
  color: #1a1a1a;
  font-size: 1.875rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-content-1
    h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-content-1
    h2 {
    font-size: 3rem;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-content-1
  p {
  color: #333333;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-content-1
    p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-content-1-image {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-content-1-image {
    height: 350px;
  }
}

@media (min-width: 1024px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-content-1-image {
    height: 400px;
    order: 2;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-content-1-image
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content Section 2 */
.post-team-coordination-integrated-training
  .team-coordination-integrated-training-content-2 {
  background-color: #f8f9fa;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-content-2 {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-content-2 {
    padding: 5rem 0;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-content-2
  h2 {
  color: #1a1a1a;
  font-size: 1.875rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-content-2
    h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-content-2
    h2 {
    font-size: 3rem;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-content-2
  p {
  color: #333333;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-content-2
    p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-highlights {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-highlight-box {
  background-color: #ffffff;
  border-right: 4px solid #d32f2f;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-highlight-box {
    padding: 2rem;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-highlight-box
  h3 {
  color: #1a1a1a;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-highlight-box
    h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-highlight-box
  i {
  color: #d32f2f;
  font-size: 1.5rem;
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-highlight-box
  p {
  color: #666666;
  font-size: 0.875rem;
  margin: 0;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-highlight-box
    p {
    font-size: 0.95rem;
  }
}

/* Content Section 3 */
.post-team-coordination-integrated-training
  .team-coordination-integrated-training-content-3 {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-content-3 {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-content-3 {
    padding: 5rem 0;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-content-3
  h2 {
  color: #1a1a1a;
  font-size: 1.875rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-content-3
    h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-content-3
    h2 {
    font-size: 3rem;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-content-3
  p {
  color: #333333;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-content-3
    p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-list
  li {
  color: #333333;
  font-size: 0.95rem;
  line-height: 1.8;
  padding: 0.75rem 0 0.75rem 2.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-list
    li {
    font-size: 1rem;
    padding: 1rem 0 1rem 2.75rem;
    margin-bottom: 0.75rem;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-list
  li:before {
  content: "✓";
  position: absolute;
  right: auto;
  left: 0;
  color: #d32f2f;
  font-weight: bold;
  font-size: 1.25rem;
}

/* Content Section 4 */
.post-team-coordination-integrated-training
  .team-coordination-integrated-training-content-4 {
  background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
  color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-content-4 {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-content-4 {
    padding: 5rem 0;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-content-4
  h2 {
  color: #ffffff;
  font-size: 1.875rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-content-4
    h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-content-4
    h2 {
    font-size: 3rem;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-content-4
  p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-content-4
    p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2.5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-step {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 3px solid #ffffff;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-step {
    padding: 2rem;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-step
  h3 {
  color: #ffffff;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-step
    h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-step
  p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  margin: 0;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-step
    p {
    font-size: 0.95rem;
  }
}

/* Disclaimer Section */
.post-team-coordination-integrated-training
  .team-coordination-integrated-training-disclaimer {
  background-color: #f0f4f8;
  border-left: 4px solid #ff9800;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-disclaimer {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-disclaimer {
    padding: 5rem 0;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-disclaimer-content {
  display: flex;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-disclaimer-content {
    gap: 2rem;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-disclaimer-icon {
  flex-shrink: 0;
  color: #ff9800;
  font-size: 2rem;
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-disclaimer-icon {
    font-size: 2.5rem;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-disclaimer
  h3 {
  color: #1a1a1a;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-disclaimer
    h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-disclaimer
  p {
  color: #333333;
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-disclaimer
    p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-disclaimer
  p:last-child {
  margin-bottom: 0;
}

/* Related Posts Section */
.post-team-coordination-integrated-training
  .team-coordination-integrated-training-related {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-related {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-related {
    padding: 5rem 0;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-related
  h2 {
  color: #1a1a1a;
  font-size: 1.875rem;
  line-height: 1.3;
  margin-bottom: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-related
    h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-related
    h2 {
    font-size: 3rem;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-related-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 300ms ease;
  display: flex;
  flex-direction: column;
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-related-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #f0f0f0;
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-related-card-image
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-related-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-related-card-content {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-related-card
  h3 {
  color: #1a1a1a;
  font-size: 1.125rem;
  line-height: 1.4;
  margin: 0;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-related-card
    h3 {
    font-size: 1.25rem;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-related-card
  p {
  color: #666666;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-related-card
    p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-related-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #d32f2f;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  margin-top: auto;
  transition: all 200ms ease;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-related-card-link {
    font-size: 0.95rem;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-related-card-link:hover {
  color: #b71c1c;
  gap: 0.75rem;
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-related-card-link
  i {
  font-size: 1rem;
}

/* Conclusion Section */
.post-team-coordination-integrated-training
  .team-coordination-integrated-training-conclusion {
  background-color: #f8f9fa;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-conclusion {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-conclusion {
    padding: 5rem 0;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-conclusion
  h2 {
  color: #1a1a1a;
  font-size: 1.875rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-conclusion
    h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-conclusion
    h2 {
    font-size: 3rem;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-conclusion
  p {
  color: #333333;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .post-team-coordination-integrated-training
    .team-coordination-integrated-training-conclusion
    p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}

.post-team-coordination-integrated-training
  .team-coordination-integrated-training-conclusion
  p:last-child {
  margin-bottom: 0;
}

/* Container */
.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Font Awesome Icon Library */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.0/css/all.min.css");

/* Post Page 5 Styles */
.post-performance-analysis-continuous-development {
  width: 100%;
  overflow: hidden;
}

/* Breadcrumbs */
.performance-analysis-continuous-development-breadcrumbs {
  background-color: var(--color-bg-light);
  padding: 1rem 0;
  overflow: hidden;
}

.performance-analysis-continuous-development-breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  flex-wrap: wrap;
}

.performance-analysis-continuous-development-breadcrumbs a,
.performance-analysis-continuous-development-breadcrumbs span {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.performance-analysis-continuous-development-breadcrumbs a {
  color: var(--color-primary);
  transition: all var(--transition-fast);
}

.performance-analysis-continuous-development-breadcrumbs a:hover {
  color: var(--color-primary-dark);
}

.performance-analysis-continuous-development-breadcrumbs span {
  color: var(--color-text-dark);
  font-weight: var(--font-weight-medium);
}

/* Hero Section */
.performance-analysis-continuous-development-hero {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-dark) 100%
  );
  color: var(--color-text-light);
  padding: 4rem 0;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .performance-analysis-continuous-development-hero {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .performance-analysis-continuous-development-hero {
    padding: 6rem 0;
  }
}

.performance-analysis-continuous-development-hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  align-items: flex-start;
}

.performance-analysis-continuous-development-hero h1 {
  color: var(--color-text-light);
  font-size: 2.25rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .performance-analysis-continuous-development-hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .performance-analysis-continuous-development-hero h1 {
    font-size: 3.5rem;
  }
}

.performance-analysis-continuous-development-hero-lead {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  max-width: 600px;
}

@media (min-width: 768px) {
  .performance-analysis-continuous-development-hero-lead {
    font-size: 1.125rem;
  }
}

.performance-analysis-continuous-development-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: var(--spacing-md);
}

.performance-analysis-continuous-development-hero-meta i {
  color: var(--color-accent);
  margin-right: 0.25rem;
}

/* Content Sections */
.performance-analysis-continuous-development-content-section {
  overflow: hidden;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .performance-analysis-continuous-development-content-section {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .performance-analysis-continuous-development-content-section {
    padding: 5rem 0;
  }
}

.performance-analysis-continuous-development-section-1 {
  background-color: var(--color-bg-light);
}

.performance-analysis-continuous-development-section-1 h2 {
  color: var(--color-text-dark);
}

.performance-analysis-continuous-development-section-1 p {
  color: var(--color-text-secondary);
}

.performance-analysis-continuous-development-section-2 {
  background-color: #ffffff;
}

.performance-analysis-continuous-development-section-2 h2 {
  color: var(--color-text-dark);
}

.performance-analysis-continuous-development-section-2 p {
  color: var(--color-text-secondary);
}

.performance-analysis-continuous-development-section-3 {
  background-color: #f0f7ff;
}

.performance-analysis-continuous-development-section-3 h2 {
  color: var(--color-text-dark);
}

.performance-analysis-continuous-development-section-3 p {
  color: var(--color-text-secondary);
}

.performance-analysis-continuous-development-section-4 {
  background-color: var(--color-bg-light);
}

.performance-analysis-continuous-development-section-4 h2 {
  color: var(--color-text-dark);
}

.performance-analysis-continuous-development-section-4 p {
  color: var(--color-text-secondary);
}

.performance-analysis-continuous-development-section-5 {
  background-color: #ffffff;
}

.performance-analysis-continuous-development-section-5 h2 {
  color: var(--color-text-dark);
}

.performance-analysis-continuous-development-section-5 p {
  color: var(--color-text-secondary);
}

/* Content Layout */
.performance-analysis-continuous-development-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

@media (min-width: 768px) {
  .performance-analysis-continuous-development-content-wrapper {
    gap: var(--spacing-2xl);
  }
}

.performance-analysis-continuous-development-section-title {
  font-size: 1.875rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .performance-analysis-continuous-development-section-title {
    font-size: 2.25rem;
    margin-bottom: var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .performance-analysis-continuous-development-section-title {
    font-size: 2.5rem;
  }
}

.performance-analysis-continuous-development-text-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

@media (min-width: 768px) {
  .performance-analysis-continuous-development-text-content {
    gap: var(--spacing-lg);
  }
}

.performance-analysis-continuous-development-text-content p {
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .performance-analysis-continuous-development-text-content p {
    font-size: 1rem;
  }
}

/* Lists */
.performance-analysis-continuous-development-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  list-style: none;
  margin: var(--spacing-md) 0;
}

.performance-analysis-continuous-development-list li {
  display: flex;
  gap: var(--spacing-sm);
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .performance-analysis-continuous-development-list li {
    font-size: 1rem;
  }
}

.performance-analysis-continuous-development-list i {
  color: var(--color-primary);
  font-size: var(--icon-md);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* Highlight Box */
.performance-analysis-continuous-development-highlight {
  background-color: rgba(211, 47, 47, 0.08);
  border-left: 4px solid var(--color-primary);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  margin: var(--spacing-lg) 0;
}

@media (min-width: 768px) {
  .performance-analysis-continuous-development-highlight {
    padding: var(--spacing-lg);
  }
}

.performance-analysis-continuous-development-highlight p {
  color: var(--color-text-dark);
  font-weight: var(--font-weight-medium);
  margin: 0;
}

/* Disclaimer Section */
.performance-analysis-continuous-development-disclaimer {
  background-color: #f5f5f5;
  border-left: 4px solid var(--color-accent);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin: var(--spacing-xl) 0;
}

@media (min-width: 768px) {
  .performance-analysis-continuous-development-disclaimer {
    padding: 2rem;
  }
}

.performance-analysis-continuous-development-disclaimer-header {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.performance-analysis-continuous-development-disclaimer-icon {
  color: var(--color-accent);
  font-size: var(--icon-lg);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.performance-analysis-continuous-development-disclaimer-title {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  margin: 0;
}

.performance-analysis-continuous-development-disclaimer p {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: var(--spacing-sm) 0;
}

.performance-analysis-continuous-development-disclaimer p:first-of-type {
  margin-top: 0;
}

.performance-analysis-continuous-development-disclaimer p:last-of-type {
  margin-bottom: 0;
}

/* Image Styles */
.performance-analysis-continuous-development-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
  margin: var(--spacing-lg) 0;
}

@media (min-width: 768px) {
  .performance-analysis-continuous-development-image {
    max-height: 400px;
    margin: var(--spacing-xl) 0;
  }
}

/* Related Posts Section */
.performance-analysis-continuous-development-related {
  background-color: #f8f9fa;
  overflow: hidden;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .performance-analysis-continuous-development-related {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .performance-analysis-continuous-development-related {
    padding: 5rem 0;
  }
}

.performance-analysis-continuous-development-related-title {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-2xl);
  text-align: center;
}

@media (min-width: 768px) {
  .performance-analysis-continuous-development-related-title {
    font-size: 2.25rem;
    margin-bottom: var(--spacing-3xl);
  }
}

.performance-analysis-continuous-development-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .performance-analysis-continuous-development-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .performance-analysis-continuous-development-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.performance-analysis-continuous-development-related-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  height: 100%;
}

.performance-analysis-continuous-development-related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.performance-analysis-continuous-development-related-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background-color: #e0e0e0;
}

.performance-analysis-continuous-development-related-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  flex-grow: 1;
}

@media (min-width: 768px) {
  .performance-analysis-continuous-development-related-card-content {
    padding: 1.75rem;
    gap: var(--spacing-lg);
  }
}

.performance-analysis-continuous-development-related-card-title {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-dark);
  line-height: 1.4;
}

@media (min-width: 768px) {
  .performance-analysis-continuous-development-related-card-title {
    font-size: 1.375rem;
  }
}

.performance-analysis-continuous-development-related-card-description {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .performance-analysis-continuous-development-related-card-description {
    font-size: 0.95rem;
  }
}

.performance-analysis-continuous-development-related-card-link {
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  align-self: flex-start;
}

.performance-analysis-continuous-development-related-card-link:hover {
  color: var(--color-primary-dark);
  transform: translateX(4px);
}

.performance-analysis-continuous-development-related-card-link i {
  font-size: var(--icon-sm);
}

/* Two Column Layout */
.performance-analysis-continuous-development-two-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

@media (min-width: 768px) {
  .performance-analysis-continuous-development-two-column {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
  }
}

@media (min-width: 1024px) {
  .performance-analysis-continuous-development-two-column {
    gap: var(--spacing-3xl);
  }
}

/* Numbered Steps */
.performance-analysis-continuous-development-steps {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  margin: var(--spacing-lg) 0;
}

.performance-analysis-continuous-development-step {
  display: flex;
  gap: var(--spacing-md);
}

.performance-analysis-continuous-development-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border-radius: 50%;
  font-weight: var(--font-weight-bold);
  font-size: 1.1rem;
}

.performance-analysis-continuous-development-step-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  flex-grow: 1;
}

.performance-analysis-continuous-development-step-title {
  font-weight: var(--font-weight-bold);
  color: var(--color-text-dark);
  font-size: 1rem;
}

.performance-analysis-continuous-development-step-description {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Privacy Page Styles */
.legal-docs {
  font-family: var(--font-primary);
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
}

.legal-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.legal-docs-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.legal-docs h1 {
  font-family: var(--font-accent);
  font-size: 2.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .legal-docs h1 {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .legal-docs h1 {
    font-size: 3.25rem;
  }
}

.legal-docs-header {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-lg);
  border-bottom: 2px solid var(--color-border);
}

.legal-docs-updated {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-weight: var(--font-weight-medium);
}

.legal-docs-section {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  background-color: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .legal-docs-section {
    padding: var(--spacing-xl);
    gap: var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .legal-docs-section {
    padding: var(--spacing-2xl);
  }
}

.legal-docs-section h2 {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .legal-docs-section h2 {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .legal-docs-section h2 {
    font-size: 2.125rem;
  }
}

.legal-docs-section p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin: 0;
}

@media (min-width: 768px) {
  .legal-docs-section p {
    font-size: 1rem;
  }
}

.legal-docs-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-docs-list li {
  display: flex;
  flex-direction: row;
  gap: var(--spacing-sm);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .legal-docs-list li {
    font-size: 1rem;
  }
}

.legal-docs-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--color-success);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.legal-docs-contact {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.legal-docs-contact-item {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.legal-docs-contact-label {
  font-weight: var(--font-weight-bold);
  color: var(--color-text-dark);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .legal-docs-contact-label {
    font-size: 1rem;
  }
}

.legal-docs-contact-value {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  direction: ltr;
}

@media (min-width: 768px) {
  .legal-docs-contact-value {
    font-size: 1rem;
  }
}

.legal-docs-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  padding: var(--spacing-lg) 0;
}

@media (min-width: 768px) {
  .legal-docs-wrapper {
    padding: var(--spacing-2xl) 0;
    gap: var(--spacing-2xl);
  }
}

@media (min-width: 1024px) {
  .legal-docs-wrapper {
    padding: var(--spacing-3xl) 0;
  }
}



/* Thank You Page Styles */
@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700&family=Playfair+Display:wght@700&display=swap");

:root {
  --color-primary: #d32f2f;
  --color-primary-dark: #b71c1c;
  --color-accent: #ff9800;
  --color-accent-light: #ffb74d;
  --color-success: #4caf50;
  --color-text-light: #ffffff;
  --color-text-dark: #1a1a1a;
  --color-text-secondary: #666666;
  --color-bg-light: #f8f9fa;
  --color-bg-dark: #0a0a0a;
  --color-border: #e0e0e0;
  --color-overlay: rgba(0, 0, 0, 0.7);
  --font-primary: "Tajawal", sans-serif;
  --font-accent: "Playfair Display", serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.25);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --icon-sm: 24px;
  --icon-md: 32px;
  --icon-lg: 48px;
  --icon-xl: 64px;
  --transition-fast: 200ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ===== THANK YOU HERO SECTION ===== */
.thank-hero-section {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-dark) 100%
  );
  overflow: hidden;
  padding: var(--spacing-2xl) 0;
}

@media (min-width: 768px) {
  .thank-hero-section {
    padding: var(--spacing-3xl) 0;
  }
}

@media (min-width: 1024px) {
  .thank-hero-section {
    padding: 120px 0;
  }
}

.thank-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--spacing-lg);
}

@media (min-width: 768px) {
  .thank-hero-content {
    gap: var(--spacing-xl);
  }
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-icon i {
  font-size: 80px;
  color: var(--color-success);
  animation: scaleIn var(--transition-slow) ease-out;
}

@media (min-width: 768px) {
  .thank-icon i {
    font-size: 120px;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-hero-section h1 {
  font-family: var(--font-accent);
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  letter-spacing: -1px;
  animation: slideDown var(--transition-base) ease-out;
}

@media (min-width: 768px) {
  .thank-hero-section h1 {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .thank-hero-section h1 {
    font-size: 4rem;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.thank-lead {
  font-size: 1.25rem;
  color: var(--color-text-light);
  font-weight: var(--font-weight-medium);
  animation: fadeIn var(--transition-base) ease-out 100ms both;
}

@media (min-width: 768px) {
  .thank-lead {
    font-size: 1.5rem;
  }
}

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

.thank-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
  animation: fadeIn var(--transition-base) ease-out 200ms both;
}

@media (min-width: 768px) {
  .thank-subtitle {
    font-size: 1.125rem;
  }
}

/* ===== THANK YOU CONTENT SECTION ===== */
.thank-content-section {
  background-color: var(--color-bg-light);
  overflow: hidden;
  padding: var(--spacing-2xl) 0;
}

@media (min-width: 768px) {
  .thank-content-section {
    padding: var(--spacing-3xl) 0;
  }
}

@media (min-width: 1024px) {
  .thank-content-section {
    padding: 100px 0;
  }
}

.thank-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--spacing-2xl);
}

@media (min-width: 768px) {
  .thank-content-wrapper {
    gap: var(--spacing-3xl);
  }
}

.thank-content-section h2 {
  font-family: var(--font-accent);
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-dark);
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .thank-content-section h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .thank-content-section h2 {
    font-size: 3rem;
  }
}

/* ===== STEPS ===== */
.thank-steps {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .thank-steps {
    gap: var(--spacing-lg);
  }
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-lg);
  background-color: var(--color-text-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base),
    box-shadow var(--transition-base);
}

@media (min-width: 768px) {
  .step-item {
    padding: var(--spacing-xl);
    gap: var(--spacing-md);
  }
}

.step-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
}

@media (min-width: 768px) {
  .step-number {
    width: 56px;
    height: 56px;
    font-size: 1.75rem;
  }
}

.step-item p {
  font-size: 0.95rem;
  color: var(--color-text-dark);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .step-item p {
    font-size: 1rem;
  }
}

/* ===== THANK YOU MESSAGE ===== */
.thank-message {
  padding: var(--spacing-lg);
  background-color: var(--color-text-light);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  width: 100%;
  max-width: 600px;
}

@media (min-width: 768px) {
  .thank-message {
    padding: var(--spacing-xl);
  }
}

.thank-message h3 {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .thank-message h3 {
    font-size: 1.75rem;
  }
}

.thank-message p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .thank-message p {
    font-size: 1rem;
  }
}

/* ===== BUTTON ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
}

@media (min-width: 768px) {
  .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

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

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

/* ===== MAIN ===== */
.main {
  background-color: var(--color-bg-light);
}

.thank-page {
  min-height: 100vh;
}

/* 404 Page Styles */
@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700&family=Playfair+Display:wght@700&display=swap");

:root {
  --color-primary: #d32f2f;
  --color-primary-dark: #b71c1c;
  --color-accent: #ff9800;
  --color-accent-light: #ffb74d;
  --color-success: #4caf50;
  --color-text-light: #ffffff;
  --color-text-dark: #1a1a1a;
  --color-text-secondary: #666666;
  --color-bg-light: #f8f9fa;
  --color-bg-dark: #0a0a0a;
  --color-border: #e0e0e0;
  --color-overlay: rgba(0, 0, 0, 0.7);
  --font-primary: "Tajawal", sans-serif;
  --font-accent: "Playfair Display", serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.25);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --icon-sm: 24px;
  --icon-md: 32px;
  --icon-lg: 48px;
  --icon-xl: 64px;
  --transition-fast: 200ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
}

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

/* Hero Section */
.error-hero-section {
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, #1a1a2e 100%);
  overflow: hidden;
  padding: var(--spacing-3xl) 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.error-hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2xl);
  align-items: center;
  text-align: center;
}

.error-illustration {
  position: relative;
  width: 200px;
  height: 200px;
  margin-bottom: var(--spacing-lg);
}

/* Volleyball Ball Animation */
.volleyball-ball {
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle at 30% 30%,
    #ffffff 0%,
    var(--color-text-light) 50%,
    #f0f0f0 100%
  );
  border-radius: 50%;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: var(--shadow-xl);
  animation: float-ball 3s ease-in-out infinite;
}

.ball-stripe {
  position: absolute;
  background: var(--color-primary);
  left: 50%;
  transform: translateX(-50%);
  height: 12px;
}

.ball-stripe:nth-child(1) {
  width: 100%;
  top: 35%;
  animation: rotate-stripe 2s linear infinite;
}

.ball-stripe:nth-child(2) {
  width: 100%;
  top: 50%;
  animation: rotate-stripe 2s linear infinite 0.3s;
}

.ball-stripe:nth-child(3) {
  width: 100%;
  top: 65%;
  animation: rotate-stripe 2s linear infinite 0.6s;
}

@keyframes float-ball {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-20px);
  }
}

@keyframes rotate-stripe {
  0% {
    transform: translateX(-50%) rotateZ(0deg);
  }
  100% {
    transform: translateX(-50%) rotateZ(360deg);
  }
}

/* Broken Net */
.broken-net {
  position: absolute;
  width: 140px;
  height: 80px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.net-line {
  position: absolute;
  background: var(--color-accent);
  height: 2px;
  width: 100%;
  opacity: 0.6;
}

.net-line:nth-child(1) {
  top: 0;
  animation: break-line 1.5s ease-in-out infinite;
}

.net-line:nth-child(2) {
  top: 50%;
  transform: scaleX(0.7);
  opacity: 0.4;
}

.net-line:nth-child(3) {
  bottom: 0;
  transform: scaleX(0.4);
  opacity: 0.2;
}

@keyframes break-line {
  0%,
  100% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0.8);
  }
}

.ground-shadow {
  position: absolute;
  width: 160px;
  height: 20px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: shadow-pulse 2s ease-in-out infinite;
}

@keyframes shadow-pulse {
  0%,
  100% {
    transform: translateX(-50%) scaleX(1);
  }
  50% {
    transform: translateX(-50%) scaleX(1.1);
  }
}

/* Error Content */
.error-code {
  font-family: var(--font-accent);
  font-size: 5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
  animation: pulse-code 2s ease-in-out infinite;
}

@keyframes pulse-code {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.error-title {
  font-size: 2.5rem;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-bold);
}

.error-subtitle {
  font-size: 1.5rem;
  color: var(--color-accent-light);
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-medium);
}

.error-description {
  font-size: 1rem;
  color: #b0b0b0;
  max-width: 500px;
  line-height: 1.8;
}

/* Suggestions Section */
.error-suggestions-section {
  background-color: var(--color-bg-light);
  overflow: hidden;
  padding: var(--spacing-3xl) 0;
}

.error-suggestions-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2xl);
}

.suggestions-title {
  font-size: 2rem;
  color: var(--color-text-dark);
  text-align: center;
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-lg);
}

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

.suggestion-card {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  background-color: var(--color-text-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-base);
  border-top: 4px solid var(--color-primary);
}

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

.suggestion-icon {
  font-size: var(--icon-lg);
  color: var(--color-primary);
  display: flex;
  justify-content: center;
}

.suggestion-heading {
  font-size: 1.25rem;
  color: var(--color-text-dark);
  font-weight: var(--font-weight-bold);
}

.suggestion-text {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Error Action */
.error-action {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  align-items: center;
  text-align: center;
  padding: var(--spacing-2xl);
  background: linear-gradient(
    135deg,
    rgba(211, 47, 47, 0.1) 0%,
    rgba(255, 152, 0, 0.1) 100%
  );
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-border);
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  text-align: center;
}

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

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

.action-hint {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  font-style: italic;
}

/* Features Section */
.error-features-section {
  background-color: var(--color-bg-dark);
  overflow: hidden;
  padding: var(--spacing-3xl) 0;
}

.error-features-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--spacing-xl);
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  text-align: center;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(211, 47, 47, 0.2);
  transition: all var(--transition-base);
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

.feature-item i {
  font-size: var(--icon-lg);
  color: var(--color-primary);
}

.feature-item h4 {
  font-size: 1.25rem;
  color: var(--color-text-light);
  font-weight: var(--font-weight-bold);
}

.feature-item p {
  font-size: 0.95rem;
  color: #b0b0b0;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .error-hero-section {
    padding: var(--spacing-2xl) 0;
    min-height: auto;
  }

  .error-code {
    font-size: 3.5rem;
  }

  .error-title {
    font-size: 1.75rem;
  }

  .error-subtitle {
    font-size: 1.1rem;
  }

  .error-description {
    font-size: 0.95rem;
  }

  .error-illustration {
    width: 150px;
    height: 150px;
  }

  .volleyball-ball {
    width: 90px;
    height: 90px;
  }

  .suggestions-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .suggestion-card {
    padding: var(--spacing-md);
  }

  .suggestions-title {
    font-size: 1.5rem;
  }

  .btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }

  .error-action {
    padding: var(--spacing-lg);
  }

  .error-features-content {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }

  .feature-item {
    padding: var(--spacing-md);
  }

  .feature-item i {
    font-size: var(--icon-md);
  }

  .feature-item h4 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .error-code {
    font-size: 2.5rem;
  }

  .error-title {
    font-size: 1.5rem;
  }

  .error-subtitle {
    font-size: 1rem;
  }

  .error-description {
    font-size: 0.9rem;
  }

  .volleyball-ball {
    width: 70px;
    height: 70px;
  }

  .error-features-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .suggestions-title {
    font-size: 1.25rem;
  }

  .suggestion-heading {
    font-size: 1.1rem;
  }

  .suggestion-text {
    font-size: 0.9rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
  }

  .action-hint {
    font-size: 0.85rem;
  }

  .feature-item h4 {
    font-size: 1rem;
  }

  .feature-item p {
    font-size: 0.9rem;
  }
}
