?/* front-page.css */

body {
  margin: 0;
  font-family: sans-serif;
  line-height: 1.6;
}

.ananda-front-page section {
  padding: 60px 20px;
}

h1, h2, h3 {
  margin-bottom: 15px;
}

p {
  margin-bottom: 10px;
}

a {
  text-decoration: none;
  color: inherit;
}

button, .btn-join, .btn-info, .btn-order, .btn-more {
  padding: 10px 20px;
  background: #444;
  color: white;
  border: none;
  cursor: pointer;
  display: inline-block;
  margin-top: 10px;
}

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

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

.wrap {
  flex-wrap: wrap;
}

.align-center {
  align-items: center;
}

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

.center {
  justify-content: center;
}

.hero-section {
  background: url('/wp-content/uploads/2023/07/mt-sample-background.jpg') no-repeat center center;
  background-size: cover;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  position: relative;
  color: white;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}


.hero-bg-image {
  background: #ccc;
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
}

.hero-inner {
  max-width: 800px;
  padding: 40px;
}

.instructor-section {
  position: relative;
  background: #f8f8f8;
}

.instructor-bg-image {
  background: #ddd;
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
}

.video-grid {
  gap: 20px;
  margin-top: 30px;
}

.video-item {
  flex: 1 1 250px;
  background: #fafafa;
  padding: 20px;
  box-sizing: border-box;
}

.video-thumb {
  height: 150px;
  background: #ccc;
  margin-bottom: 10px;
}

.pricing-grid {
  gap: 20px;
  margin-top: 30px;
}

.pricing-card {
  background: #f4f4f4;
  padding: 20px;
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
}

.price {
  font-size: 24px;
  font-weight: bold;
}

.faq-list details {
  margin-bottom: 15px;
  background: #f1f1f1;
  padding: 10px;
}
