 :root {
   --gold: #d4a574;
 }
 body {
      margin: 0;
      background: url('/image/d4s5689-2-300dpi-1500x998.jpg') no-repeat center center fixed;
      background-size: cover;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #1a1a1a;
    }

    .container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  position: relative;
  z-index: 2;
}

/* Header Styles */
.page-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  padding: 2rem 0;
  margin-top: 50px;
 
}

.page-header::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.course-header-container {
  position: relative;
  display: inline-block;
  padding: 0 2.5rem;
}

.page-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, var(--gold) 0%, #f3dfa2 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  position: relative;
  text-transform: uppercase;
  animation: shimmer 3s infinite alternate;
}

@keyframes shimmer {
  0% {
    background-position: -100% center;
  }
  100% {
    background-position: 200% center;
  }
}

.header-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin: 0 auto;
  max-width: 700px;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}


    .contentWrapper {
      max-width: 1000px;
      margin: 40px auto;
      background: rgba(255, 255, 255, 0.07);
      backdrop-filter: blur(16px);
      border-radius: 3px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
      padding: 40px;
    }

    .contentSection {
      margin-bottom: 40px;
      padding: 20px;
      background: rgba(255, 255, 255, 0.04);
      border-left: 5px solid rgba(139, 115, 85, 0.22);
      border-radius: 3px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
      color: #fff !important;
    }

    .contentSection h2 {
      font-family: 'Playfair Display', serif;
      color: #fff !important;
      font-size: 1.5rem;
      background: none;
      -webkit-background-clip: initial;
      background-clip: initial;
    }

    .contentSection p,
    .contentSection ul {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #fff !important;
      background: none;
    }

    .contentSection ul {
      padding-left: 20px;
    }

    .contentSection ul li {
      margin-bottom: 8px;
    }

    
    
    .optionBtn {
        display: block;
        margin: 40px auto 0;
        padding: 14px 36px;
        font-size: 1.08rem;
        background: linear-gradient(135deg,  #8b7355 0%, #6b5a47 100%);
        color: #fff;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-weight: 600;
        letter-spacing: 1px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        transition: background 0.2s, color 0.2s, box-shadow 0.2s;
        text-transform: uppercase;
        outline: none;
        text-align: center;
        text-decoration: none;
      }
.optionBtn:hover, .optionBtn:focus {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.4);
    transform: translateY(0);
      }
      
.optionCard .optionBtn:hover::before {
    left: 100%;
}

.optionCard .optionBtn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.optionCard:hover .optionBtn i {
    transform: translateX(3px);
}