img {
  max-width: 100%;
  object-fit: cover;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}

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

body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background: #0f0e0d;
  color: #e0d9d2;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

h1,
h2,
h3,
h4 {
  color: #fff;
}

p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #d0c8c0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(15, 14, 13, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
    order: 2;
  font-size: 2.6rem;
  color: #a67c52;
  letter-spacing: -1px;
  font-weight: 700;
}

.burger {
    order:1;
  width: 40px;
  height: 30px;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.burger span {
  width: 100%;
  height: 4px;
  background: #a67c52;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu {
  position: fixed;
  top: 90px;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #0f0e0d;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

.mobile-menu.active {
  right: 0;
}

.menu-list {
  list-style: none;
  text-align: center;
}

.menu-list li {
  margin: 30px 0;
}

.menu-list a {
  color: #e0d9d2;
  font-size: 2.2rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.menu-list a:hover {
  color: #a67c52;
}

/* Section Base */
section {
  padding: 180px 0 120px;
  position: relative;
}

.section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 100px;
  position: relative;
  color: #fff;
}

.section-title::after {
  content: "";
  width: 140px;
  height: 5px;
  background: #a67c52;
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
}

.hero {
  height: 100vh;
  max-height: 1200px;
  min-height: 800px;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a1715 0%, #0f0e0d 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("image/banner.jpg")
    center/cover;
  opacity: 0.25;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero h1 {
  font-size: 6.5rem;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 10px 40px rgba(166, 124, 82, 0.4);
}

.hero h1 span {
  color: #a67c52;
  display: block;
  font-size: 4.5rem;
}

.hero p {
  font-size: 1.5rem;
  max-width: 700px;
  margin-bottom: 50px;
  color: #d0c8c0;
}

.cta-button {
  display: inline-block;
  padding: 20px 50px;
  background: linear-gradient(90deg, #a67c52, #c49a6d);
  color: #0f0e0d;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 0;
  position: relative;
  margin-top: 15px;
  overflow: hidden;
  transition: all 0.5s;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(166, 124, 82, 0.5);
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: 0.7s;
}

.cta-button:hover::before {
  left: 100%;
}
.path-begins .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.path-begins img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  border: 4px solid #a67c52;
  box-shadow: 20px 20px 0 #a67c52;
}
.path-begins h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}
.path-begins p {
  font-size: 1.2rem;
  line-height: 1.9;
  color: #d0c8c0;
}
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 60px;
}
.live-card {
  background: #1a1715;
  padding: 60px 40px;
  border-left: 8px solid #a67c52;
  position: relative;
  transition: transform 0.6s;
}
.live-card:hover {
  transform: translateY(-20px);
}
.live-card h3 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #a67c52;
}
.live-card ul {
  list-style: none;
  font-size: 1.2rem;
  line-height: 2;
}
.live-card ul li {
  margin-bottom: 20px;
  position: relative;
  padding-left: 40px;
}
.live-card ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #a67c52;
  position: absolute;
  left: 0;
  top: 2px;
}
.behind-scenes {
  background: linear-gradient(180deg, #0f0e0d 0%, #1a1715 100%);
}
.scenes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  align-items: center;
}
.scene-text {
  padding: 40px;
  background: #1a1715;
  border-right: 8px solid #a67c52;
}
.scene-text h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}
.scene-text p {
  font-size: 1.2rem;
  line-height: 1.9;
  color: #d0c8c0;
}
.scene-text ul {
  margin-top: 40px;
  font-size: 1.2rem;
  list-style: none;
}
.scene-text ul li {
  margin-bottom: 20px;
  position: relative;
  padding-left: 40px;
}
.scene-text ul li::before {
  content: "\f0c2";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #a67c52;
  position: absolute;
  left: 0;
}
.scene-image {
  position: relative;
}
.scene-image img {
  width: 100%;
  border: 4px solid #a67c52;
  box-shadow: -20px -20px 0 #a67c52;
}
.first-masterpiece {
  background: #1a1715;
}
.masterpiece-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 60px;
}
.step-card {
  background: #0f0e0d;
  padding: 50px 40px;
  border-top: 8px solid #a67c52;
  position: relative;
  transition: transform 0.5s;
}
.step-card:hover {
  transform: translateY(-15px);
}
.step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: #a67c52;
  color: #0f0e0d;
  font-size: 2.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(166, 124, 82, 0.4);
}
.step-card h3 {
  font-size: 1.9rem;
  margin: 30px 0 20px;
  color: #a67c52;
}
.step-card p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.faq-item {
  background: #0f0e0d;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border-left: 8px solid #a67c52;
}
.faq-question {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #a67c52;
  font-weight: 700;
}
.faq-answer {
  font-size: 1.1rem;
  line-height: 1.9;
  background: linear-gradient(to right, #a67c52, #c49a6d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.grid {
  display: grid;
  gap: 60px;
}

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

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

.card {
  background: #1a1715;
  padding: 50px 40px;
  border-left: 8px solid #a67c52;
  transition: transform 0.5s;
}

.card:hover {
  transform: translateY(-20px);
}

/* Gallery Slider (index) */
.gallery-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 700px;
  border: 8px solid #a67c52;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.gallery-inner {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #1a1715;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

.gallery-info {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  background: rgba(15, 14, 13, 0.8);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-top: 4px solid #a67c52;
}

.gallery-info h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #a67c52;
}

.gallery-info p {
  font-size: 1.2rem;
  line-height: 1.8;
}

.gallery-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
}

.gallery-dot {
  width: 16px;
  height: 16px;
  background: #a67c52;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s;
}

.gallery-dot.active {
  transform: scale(1.5);
  background: #c49a6d;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  background: rgba(166, 124, 82, 0.3);
  border: 2px solid #a67c52;
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s;
}

.gallery-arrow:hover {
  background: #a67c52;
}

.gallery-arrow.left {
  left: 40px;
}
.gallery-arrow.right {
  right: 40px;
}

/* Form (index) */
.form-field {
  margin-bottom: 30px;
  position: relative;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 20px;
  background: #1a1715;
  border: none;
  border-bottom: 2px solid #a67c52;
  border-right: 2px solid #a67c52;
  color: #fff;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  box-shadow: 0 0 20px rgba(166, 124, 82, 0.4);
}

.form-field label {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #a67c52;
  transition: all 0.3s;
}

.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label {
  top: -10px;
  left: 20px;
  font-size: 0.9rem;
  background: #1a1715;
  padding: 0 10px;
}
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 20px;
  font-size: 0.9rem;
  background: #1a1715;
  padding: 0 10px;
}
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 40px 0;
  font-size: 1.1rem;
}

.form-checkbox a {
  color: #a67c52;
  text-decoration: underline;
}

.form-submit {
  padding: 20px 60px;
  background: linear-gradient(90deg, #a67c52, #c49a6d);
  border: none;
  color: #0f0e0d;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s;
}

.form-submit:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(166, 124, 82, 0.5);
}
.origin {
  background: linear-gradient(135deg, #1a1715 0%, #0f0e0d 100%);
}
.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.origin-text h2 {
  font-size: 2.4rem;
  margin-bottom: 40px;
  color: #a67c52;
}
.origin-text p {
  font-size: 1.25rem;
  line-height: 2;
  color: #d0c8c0;
}

.philosophy {
  background: #0f0e0d;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.philo-card {
  background: #1a1715;
  padding: 60px 40px;
  border-top: 6px solid #a67c52;
  position: relative;
  transition: transform 0.5s;
}
.philo-card:hover {
  transform: translateY(-20px);
}
.philo-card h3 {
  font-size: 2.2rem;
  color: #a67c52;
  margin-bottom: 25px;
}
.philo-card p {
  font-size: 1.15rem;
  line-height: 1.9;
}

.difference {
  background: linear-gradient(180deg, #0f0e0d 0%, #1a1715 100%);
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}
.diff-item {
  text-align: center;
  padding: 40px 20px;
  background: #1a1715;
  border: 2px solid #a67c52;
}
.diff-item i {
  font-size: 3.5rem;
  color: #a67c52;
  margin-bottom: 25px;
}
.diff-item h4 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 15px;
}
.diff-item p {
  font-size: 1rem;
  color: #d0c8c0;
}

.mentors {
  background: #0f0e0d;
}
.mentors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
}
.mentor {
  text-align: center;
  background: #1a1715;
  padding: 50px 30px;
  border-top: 6px solid #a67c52;
}
.mentor img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 4px solid #a67c52;
  margin-bottom: 25px;
}
.mentor h4 {
  font-size: 1.6rem;
  color: #a67c52;
  margin-bottom: 10px;
}
.mentor p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.impact {
  background: #1a1715;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.impact-card {
  background: #0f0e0d;
  padding: 50px 40px;
  border-left: 8px solid #a67c52;
  transition: transform 0.5s;
}
.impact-card:hover {
  transform: scale(1.05);
}
.impact-card h3 {
  font-size: 2.5rem;
  color: #a67c52;
  margin-bottom: 20px;
}
.impact-card p {
  font-size: 1.2rem;
  line-height: 1.9;
}

.promise {
  background: linear-gradient(135deg, #1a1715 0%, #0f0e0d 100%);
  text-align: center;
}
.promise h2 {
  font-size: 3rem;
  color: #a67c52;
  margin-bottom: 40px;
}
.promise p {
  max-width: 900px;
  margin: 0 auto 60px;
  font-size: 1.4rem;
  line-height: 2;
  color: #d0c8c0;
}
.promise-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 800px;
  margin: 0 auto;
}
.promise-item {
  background: #0f0e0d;
  padding: 25px 40px;
  border-left: 6px solid #a67c52;
  font-size: 1.25rem;
}

.vision {
  background: #0f0e0d;
}
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.vision-text h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #a67c52;
}
.vision-text p {
  font-size: 1.25rem;
  line-height: 2;
}
.journey {
  background: linear-gradient(135deg, #1a1715 0%, #0f0e0d 100%);
}
.journey p {
  font-size: 1.4rem;
  line-height: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #d0c8c0;
}

.mediums {
  background: #0f0e0d;
}
.mediums-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.medium-card {
  background: #1a1715;
  padding: 60px 40px;
  border-top: 6px solid #a67c52;
  transition: transform 0.5s;
}
.medium-card:hover {
  transform: translateY(-20px);
}
.medium-card i {
  font-size: 4rem;
  color: #a67c52;
  margin-bottom: 30px;
}
.medium-card h3 {
  font-size: 2.2rem;
  color: #a67c52;
  margin-bottom: 25px;
}
.medium-card p {
  font-size: 1.15rem;
  line-height: 1.9;
}

.courses {
  background: #1a1715;
}
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.course-card {
  background: #0f0e0d;
  padding: 50px 40px;
  border-left: 8px solid #a67c52;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.5s;
}
.course-card:hover {
  transform: translateY(-15px);
}
.course-card h3 {
  font-size: 2rem;
  color: #a67c52;
  margin-bottom: 20px;
}
.course-card .desc {
  font-size: 1.1rem;
  line-height: 1.8;
  flex-grow: 1;
  margin-bottom: 30px;
  color: #d0c8c0;
}
.course-card .features {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}
.course-card .features li {
  margin-bottom: 12px;
  font-size: 1rem;
  position: relative;
  padding-left: 30px;
}
.course-card .features li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #a67c52;
  position: absolute;
  left: 0;
}
.course-card .cta {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(90deg, #a67c52, #c49a6d);
  color: #0f0e0d;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: auto;
  transition: all 0.4s;
}
.course-card .cta:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(166, 124, 82, 0.4);
}

.teaching {
  background: linear-gradient(180deg, #0f0e0d 0%, #1a1715 100%);
}
.teaching-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}
.teaching-text h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #a67c52;
}
.teaching-text p {
  font-size: 1.25rem;
  line-height: 2;
  color: #d0c8c0;
}

.results {
  background: #0f0e0d;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.result-card {
  background: #1a1715;
  padding: 50px 40px;
  border-top: 6px solid #a67c52;
  text-align: center;
}
.result-card h3 {
  font-size: 2.8rem;
  color: #a67c52;
  margin-bottom: 20px;
}
.result-card p {
  font-size: 1.2rem;
  line-height: 1.8;
}

.pace {
  background: #1a1715;
}
.pace-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.pace-option {
  background: #0f0e0d;
  padding: 50px 40px;
  border-left: 8px solid #a67c52;
  text-align: center;
}
.pace-option h3 {
  font-size: 2rem;
  color: #a67c52;
  margin-bottom: 25px;
}
.pace-option p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.leave-with {
  background: linear-gradient(135deg, #1a1715 0%, #0f0e0d 100%);
  text-align: center;
}
.leave-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}
.leave-item {
  background: #0f0e0d;
  padding: 40px;
  border-left: 8px solid #a67c52;
  font-size: 1.3rem;
  line-height: 1.9;
}
.form-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.begin {
  background: url(image/banner2.jpeg) center / cover no-repeat;
  text-align: center;
  position: relative;
}
.begin::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;left: 0;
    background: rgba(0, 0, 0, .6);
}
.begin .container{
    position: relative;z-index: 5;
}
.begin h2 {
  font-size: 4.2rem;
  color: #a67c52;
  margin-bottom: 40px;
}
.begin p {
  font-size: 1.4rem;
  max-width: 900px;
  margin: 0 auto 60px;
  color: #d0c8c0;
}
.begin .cta {
  padding: 20px 30px;
  background: linear-gradient(90deg, #a67c52, #c49a6d);
  color: #0f0e0d;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
  display: inline-block;
  transition: all 0.4s;
}
.begin .cta:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(166, 124, 82, 0.5);
}
.reviews-grid {
    margin-top: 80px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 120px 80px;
      align-items: start;
    }
    .review-card:nth-child(odd) {
      transform: translateY(60px);
    }
    .review-card:nth-child(even) {
      transform: translateY(-60px);
    }
    .review-card {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      background: #1a1715;
      padding: 40px 20px;
      border-left: 8px solid #a67c52;
      box-shadow: 0 20px 60px rgba(0,0,0,0.5);
      transition: transform 0.6s ease;
    }
    .review-photo {
      flex-shrink: 0;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      overflow: hidden;
      border: 6px solid #a67c52;
    }
    .review-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .review-content h3 {
      font-size: 1.8rem;
      color: #a67c52;
      margin-bottom: 10px;
    }
    .review-content .role {
      font-size: 1.1rem;
      color: #c49a6d;
      margin-bottom: 25px;
      font-style: italic;
    }
    .review-content p {
      font-size: 1rem;
      line-height: 2;
      color: #d0c8c0;
    }
footer {
  background: #0f0e0d;
  padding: 120px 0 60px;
  border-top: 8px solid #a67c52;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}


.footer-col h4 {
  font-size: 1.4rem;
  margin-bottom: 30px;
  color: #a67c52;
}

.footer-col p,
.footer-col a {
  color: #d0c8c0;
  line-height: 2;
  text-decoration: none;
}

.footer-col a:hover {
  color: #a67c52;
}
a.footer-logo {
    display: inline-block;
    margin-bottom: 30px;
    font-weight: 700;
  font-size: 1.4rem;
  color: #a67c52;
}

/* Privacy & Terms Pages */
.privacy-title,
.terms-title {
  font-size: 3rem;
  color: #a67c52;
  margin-bottom: 40px;
  text-align: center;
}
.privacy-content h2,
.terms-content h2{
    margin-bottom: 15px;
}
.privacy-content p,
.terms-content p {
  font-size: 1.15rem;
  margin-bottom: 25px;
  max-width: 900px;
}

.privacy-content ul,
.terms-content ul {
  list-style: none;
  padding-left: 30px;
  margin-bottom: 25px;
}

.privacy-content ul li,
.terms-content ul li {
  position: relative;
  margin-bottom: 15px;
  font-size: 1.15rem;
}

.privacy-content ul li::before,
.terms-content ul li::before {
  content: "•";
  color: #a67c52;
  position: absolute;
  left: -20px;
  font-size: 1.6rem;
}

.last-updated {
  font-style: italic;
  color: #a67c52;
  margin-top: 60px;
  text-align: center;
  font-size: 1.1rem;
}
.thanks-container {
  max-width: 900px;
  padding: 40px 10px;
  text-align: center;
  margin: 0 auto;
}

.thanks-container h1 {
  font-size: 3.5rem;
  color: #a67c52;
  margin-bottom: 30px;
  letter-spacing: -2px;
}

.thanks-container p {
  line-height: 1.8;
  margin-bottom: 60px;
  color: #d0c8c0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.home-button {
  display: inline-block;
  padding: 20px 30px;
  background: linear-gradient(90deg, #a67c52, #c49a6d);
  color: #0f0e0d;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.home-button:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(166, 124, 82, 0.5);
}

.home-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: 0.7s;
}

.home-button:hover::before {
  left: 100%;
}

@media (max-width: 1024px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero h1 {
    font-size: 4rem;
  }
  .hero h1 span {
    font-size: 2.5rem;
  }
  .philosophy-grid,
  .impact-grid,
  .mediums-grid,
  .courses-grid,
  .results-grid,
  .pace-options {
    grid-template-columns: repeat(2, 1fr);
  }
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .path-begins .grid,
  .scenes-grid,
  .origin-grid,
  .vision-grid , .form-grid, .teaching-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .review-card:nth-child(odd),
      .review-card:nth-child(even) {
        transform: none;
      }
      .review-card {
        flex-direction: column;
        text-align: center;
      }
      .review-photo {
        margin: 0 auto 30px;
      }
}

@media (max-width: 800px) {
  .container {
    padding: 0 10px;
  }
  .section-title {
    font-size: 2.5rem;
  }
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .hero h1 span {
    font-size: 2rem;
  }
  
  .thanks-container h1 {
    font-size: 2.5rem;
  }
  .philosophy-grid,
  .impact-grid,
  .diff-grid,
  .mediums-grid,
  .courses-grid,
  .results-grid,
  .pace-options {
    grid-template-columns: 1fr;
  }
  .home-button {
    padding: 16px 20px;
    font-size: 1.3rem;
  }
  .privacy-title, .terms-title {
    font-size: 2.5rem;
  }
  .review-card { padding: 40px 30px; }
  .mentors-grid, .live-grid, .masterpiece-steps{
        grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  }
  .vision-text h2, .teaching-text h2, .scene-text h2  {
    font-size: 2rem;
  }
  .philo-card, .medium-card, .course-card, .live-card {
    padding: 30px 20px;
  }
  .medium-card h3, .gallery-info h3, .live-card h3, .pace-option h3, .course-card h3 {
    font-size: 1.5rem;
  }
  .begin h2{
    font-size: 3rem;
  }
  .gallery-info{
    left: 10px;
    right: 10px;
    bottom: 25px;
    padding: 20px 10px;
  }
  .gallery-info p{
    font-size: 14px;
  }
}
