body {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  background: #f7f6f2;
  color: #222;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
  animation: fadeInDown 1s;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #6a8d73;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.navbar a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.2s;
}

.navbar a:hover {
  color: #6a8d73;
}

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
  animation: fadeIn 1.2s;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.7);
  z-index: 1;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 90%;
  max-width: 1200px;
  position: relative;
  z-index: 2;
  gap: 3rem;
}

.hero-text {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: slideInLeft 1.2s;
}

.hero-text h1 {
  font-size: 2.8rem;
  color: #6a8d73;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-text p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #444;
}

.hero-img {
  width: 350px;
  max-width: 90vw;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(106,141,115,0.12);
  margin-top: 1.5rem;
  animation: fadeIn 2s;
}

.contact-form {
  flex: 1;
  background: rgba(255,255,255,0.95);
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(106,141,115,0.10);
  padding: 2.5rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: slideInRight 1.2s;
}

.contact-form h2 {
  font-size: 1.4rem;
  color: #6a8d73;
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-form label {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.2rem;
}

.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.7rem 1rem;
  border: 1px solid #dbe6e4;
  border-radius: 0.7rem;
  background: #f7f6f2;
  margin-bottom: 0.5rem;
  transition: border 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid #6a8d73;
  outline: none;
}

.contact-form button {
  background: linear-gradient(90deg, #6a8d73 60%, #b6d7b9 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 0.7rem;
  padding: 0.8rem 0;
  cursor: pointer;
  margin-top: 0.5rem;
  box-shadow: 0 2px 8px rgba(106,141,115,0.10);
  transition: background 0.2s, transform 0.2s;
}

.contact-form button:hover {
  background: linear-gradient(90deg, #b6d7b9 0%, #6a8d73 100%);
  transform: translateY(-2px) scale(1.03);
}

footer {
  text-align: center;
  padding: 1.5rem 0 1rem 0;
  background: #f0f5f2;
  color: #6a8d73;
  font-size: 1rem;
  margin-top: 2rem;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .hero-img {
    width: 90vw;
    max-width: 350px;
  }
  .contact-form {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    gap: 0.7rem;
    padding: 0.7rem 0.5rem;
  }
  .navbar ul {
    flex-wrap: wrap;
    gap: 0.7rem;
    font-size: 0.95rem;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-text p {
    font-size: 1rem;
  }
  .contact-form {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

.about-section {
  min-height: 340px;
  padding: 4rem 0 3rem 0;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1.2s;
}

.about-section:not(:first-child) {
  border-top: 1px solid #e0e6e3;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.7);
  z-index: 1;
}

.about-section.alt::before {
  background: rgba(186, 222, 199, 0.18);
}

.about-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  animation: fadeIn 1.5s;
}

.about-content h1, .about-content h2 {
  color: #6a8d73;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-content p {
  color: #333;
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}

.about-img {
  width: 260px;
  max-width: 90vw;
  border-radius: 1.2rem;
  box-shadow: 0 4px 18px rgba(106,141,115,0.10);
  margin: 1.2rem auto 1.5rem auto;
  display: block;
  animation: fadeIn 2s;
}

@media (max-width: 700px) {
  .about-section {
    padding: 2.2rem 0 1.5rem 0;
  }
  .about-content h1, .about-content h2 {
    font-size: 1.3rem;
  }
  .about-content p {
    font-size: 1rem;
  }
  .about-img {
    width: 90vw;
    max-width: 220px;
  }
}

.services-list {
  max-width: 1100px;
  margin: 3rem auto 2rem auto;
  padding: 0 1rem;
  text-align: center;
}
.services-list h1 {
  color: #6a8d73;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  font-weight: 700;
}
.service-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px rgba(106,141,115,0.10);
  margin-bottom: 2.2rem;
  overflow: hidden;
  animation: fadeIn 1.2s;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 32px rgba(106,141,115,0.16);
}
.service-img {
  width: 220px;
  height: 180px;
  object-fit: cover;
  border-radius: 1.2rem 0 0 1.2rem;
  box-shadow: 0 2px 8px rgba(106,141,115,0.08);
  background: #f7f6f2;
}
.service-info {
  flex: 1;
  padding: 2rem 2.5rem;
  text-align: left;
}
.service-info h2 {
  color: #6a8d73;
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
}
.service-info p {
  color: #333;
  font-size: 1.08rem;
  margin-bottom: 1.2rem;
}
.buy-btn {
  background: linear-gradient(90deg, #6a8d73 60%, #b6d7b9 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 0.7rem;
  padding: 0.7rem 2.2rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(106,141,115,0.10);
  transition: background 0.2s, transform 0.2s;
}
.buy-btn:hover {
  background: linear-gradient(90deg, #b6d7b9 0%, #6a8d73 100%);
  transform: scale(1.05);
}
@media (max-width: 800px) {
  .service-card {
    flex-direction: column;
    align-items: stretch;
  }
  .service-img {
    width: 100%;
    height: 180px;
    border-radius: 1.2rem 1.2rem 0 0;
  }
  .service-info {
    padding: 1.2rem 1rem;
    text-align: center;
  }
}

.faq-list {
  max-width: 800px;
  margin: 3rem auto 2rem auto;
  padding: 0 1rem;
  text-align: center;
}
.faq-list h1 {
  color: #6a8d73;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  font-weight: 700;
}
.faq-item {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px rgba(106,141,115,0.10);
  margin-bottom: 1.5rem;
  padding: 2rem 1.5rem;
  text-align: left;
  animation: fadeIn 1.2s;
}
.faq-item h2 {
  color: #6a8d73;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.faq-item p {
  color: #333;
  font-size: 1.05rem;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .faq-item {
    padding: 1.2rem 0.7rem;
  }
}

.contact-info-section {
  max-width: 600px;
  margin: 3rem auto 2rem auto;
  padding: 0 1rem;
  text-align: center;
}
.contact-info-section h1 {
  color: #6a8d73;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  font-weight: 700;
}
.contact-info-card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px rgba(106,141,115,0.10);
  padding: 2.2rem 1.5rem;
  animation: fadeIn 1.2s;
  font-size: 1.1rem;
}
.contact-info-card p {
  color: #333;
  margin-bottom: 1.2rem;
}
.contact-info-card a {
  color: #6a8d73;
  text-decoration: underline;
  font-weight: 500;
}
@media (max-width: 600px) {
  .contact-info-card {
    padding: 1.2rem 0.7rem;
    font-size: 1rem;
  }
}

.policy-section {
  max-width: 800px;
  margin: 3rem auto 2rem auto;
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px rgba(106,141,115,0.10);
  animation: fadeIn 1.2s;
}
.policy-section h1 {
  color: #6a8d73;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
.policy-section h2 {
  color: #6a8d73;
  font-size: 1.15rem;
  margin-top: 2rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
}
.policy-section p {
  color: #333;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}
.policy-section a {
  color: #6a8d73;
  text-decoration: underline;
  font-weight: 500;
}
@media (max-width: 600px) {
  .policy-section {
    padding: 1.2rem 0.7rem;
  }
}

.main-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2.5rem;
  background: #eaf3ed;
  padding: 3rem 2rem 2rem 2rem;
  border-top: 1px solid #dbe6e4;
  margin-top: 3rem;
}
.footer-section {
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 320px;
  margin-bottom: 1.5rem;
}
.footer-logo {
  font-size: 1.7rem;
  font-weight: 700;
  color: #6a8d73;
  margin-bottom: 0.7rem;
  letter-spacing: 0.08em;
}
.footer-logo-desc p {
  color: #333;
  font-size: 1.05rem;
  margin-bottom: 0;
}
.footer-section h3 {
  color: #6a8d73;
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
}
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section ul li {
  margin-bottom: 0.5rem;
}
.footer-section a {
  color: #222;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}
.footer-section a:hover {
  color: #6a8d73;
  text-decoration: underline;
}
.footer-contact p {
  color: #333;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.footer-contact a {
  color: #6a8d73;
  text-decoration: underline;
  font-weight: 500;
}
@media (max-width: 900px) {
  .main-footer {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1rem 1.5rem 1rem;
  }
  .footer-section {
    max-width: 100%;
    min-width: 0;
  }
}

.info-section {
  padding: 4rem 0;
  background-color: #f7f6f2;
}

.info-section.alt {
  background-color: #eaf3ed;
}

.info-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: fadeIn 1.2s;
}

.info-content h2 {
  color: #6a8d73;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.info-content p {
  color: #333;
  font-size: 1.15rem;
  max-width: 800px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.info-image-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.info-image {
  max-width: 600px;
  width: 90%;
  height: auto;
  border-radius: 1.2rem;
  box-shadow: 0 8px 32px rgba(106,141,115,0.12);
  animation: fadeIn 2s;
  transition: transform 0.3s ease;
}

.info-image:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .info-section {
    padding: 3rem 0;
  }
  
  .info-content h2 {
    font-size: 1.5rem;
  }
  
  .info-content p {
    font-size: 1rem;
  }
}

/* Yoga Program Cards */
.card-section {
  padding: 5rem 2rem;
  background-color: #f7f6f2;
  background-image: linear-gradient(to bottom, #f7f6f2, #eaf3ed);
}

.section-title {
  text-align: center;
  color: #6a8d73;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #b6d7b9;
  border-radius: 3px;
}

.card-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.yoga-card {
  width: 350px;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(106,141,115,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeIn 1.2s;
}

.yoga-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(106,141,115,0.15);
}

.card-image {
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.yoga-card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  color: #6a8d73;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.card-content p {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card-btn {
  display: inline-block;
  background: linear-gradient(90deg, #6a8d73 60%, #b6d7b9 100%);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.card-btn:hover {
  background: linear-gradient(90deg, #b6d7b9 0%, #6a8d73 100%);
  transform: scale(1.05);
}

/* Testimonial Section */
.testimonial-section {
  padding: 5rem 2rem;
  background-color: #f0f5f2;
}

.testimonial-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.testimonial-card {
  width: 480px;
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(106,141,115,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  animation: fadeIn 1.2s;
}

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

.testimonial-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #eaf3ed;
  margin-bottom: 1.5rem;
}

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

.testimonial-text {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
  color: #6a8d73;
  font-weight: 700;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .card-section, .testimonial-section {
    padding: 3rem 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .yoga-card, .testimonial-card {
    width: 90%;
    max-width: 350px;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
}

/* Redesigned Feature Sections */
.feature-section {
  padding: 5rem 0;
  background-color: #f7f6f2;
  overflow: hidden;
}

.feature-section.alt {
  background-color: #eaf3ed;
}

.feature-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.feature-container.reverse {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1;
  max-width: 600px;
}

.feature-title {
  font-size: 2.2rem;
  color: #6a8d73;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  animation: fadeIn 1s;
}

.feature-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 3px;
  background: #b6d7b9;
  border-radius: 2px;
}

.feature-description {
  font-size: 1.15rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 2rem;
  animation: fadeIn 1.2s;
}

/* Feature Points */
.feature-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Video Section */
.video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#yoga-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
}

.video-overlay h2 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInDown 1.5s;
}

.video-overlay p {
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  animation: fadeIn 2s;
}

@media (max-width: 768px) {
  .video-section {
    height: 60vh;
  }
  
  .video-overlay h2 {
    font-size: 2rem;
  }
  
  .video-overlay p {
    font-size: 1.2rem;
  }
}

.feature-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  animation: slideInRight 1.2s;
}

.point-icon {
  font-size: 1.8rem;
  color: #6a8d73;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
}

.point-content h3 {
  font-size: 1.2rem;
  color: #6a8d73;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.point-content p {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.benefit-item {
  animation: fadeIn 1.4s;
}

.benefit-item h3 {
  font-size: 1.2rem;
  color: #6a8d73;
  margin-bottom: 1rem;
  font-weight: 700;
}

.benefit-item ul {
  padding-left: 1.5rem;
}

.benefit-item li {
  margin-bottom: 0.6rem;
  color: #444;
  line-height: 1.4;
}

/* Level Boxes */
.level-boxes {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.level-box {
  background: rgba(255, 255, 255, 0.7);
  border-left: 4px solid #6a8d73;
  padding: 1rem 1.2rem;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 4px 12px rgba(106,141,115,0.08);
  animation: fadeIn 1.5s;
  transition: transform 0.3s ease;
}

.level-box:hover {
  transform: translateX(5px);
}

.level-box h3 {
  font-size: 1.1rem;
  color: #6a8d73;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.level-box p {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
}

.feature-quote {
  font-style: italic;
  font-size: 1.3rem;
  color: #6a8d73;
  text-align: center;
  margin: 1.5rem 0;
  animation: fadeIn 1.6s;
}

.join-text {
  font-size: 1.1rem;
  color: #333;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px dashed #b6d7b9;
  animation: fadeIn 1.7s;
}

/* Feature Images */
.feature-image-wrapper {
  flex: 1;
  max-width: 500px;
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(106,141,115,0.15);
  animation: fadeIn 1.3s;
}

.feature-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.feature-image-wrapper:hover .feature-image {
  transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .feature-container, 
  .feature-container.reverse {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
  
  .feature-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .feature-point {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .level-box {
    border-left: none;
    border-top: 4px solid #6a8d73;
    border-radius: 0 0 8px 8px;
  }
  
  .level-box:hover {
    transform: translateY(5px);
  }
  
  .feature-image-wrapper {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .feature-section {
    padding: 3rem 0;
  }
  
  .feature-title {
    font-size: 1.8rem;
  }
  
  .feature-description {
    font-size: 1.05rem;
  }
  
  .feature-quote {
    font-size: 1.1rem;
  }
}

/* About Page Features */
.about-feature {
  padding: 5rem 2rem;
  background-color: #fefefe;
}

.about-feature.alt {
  background-color: #f8f8f8;
}

.about-feature-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: center;
}

.about-feature-wrapper.reverse {
  flex-direction: row-reverse;
}

.about-feature-content, .about-feature-image {
  flex: 1;
}

.about-feature-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #333;
  position: relative;
}

.about-feature-title::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #a9c9a3, #68a691);
}

.about-feature-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  color: #555;
}

.about-feature-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.about-feature-image img:hover {
  transform: scale(1.02);
}

.about-feature-box {
  background-color: rgba(168, 201, 163, 0.1);
  border-left: 4px solid #68a691;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
}

.about-feature-box h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #444;
}

.about-feature-box ul {
  padding-left: 1.2rem;
}

.about-feature-box li {
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.pose-icons {
  display: flex;
  gap: 1.5rem;
  margin: 2rem 0;
  justify-content: space-around;
}

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

.pose-icon span {
  font-size: 3rem;
  display: block;
  margin-bottom: 0.5rem;
}

.pose-icon p {
  font-size: 0.9rem !important;
  margin-bottom: 0 !important;
}

.meditation-quote {
  font-style: italic;
  font-size: 1.2rem;
  padding: 1.5rem;
  border-left: 4px solid #68a691;
  background-color: rgba(168, 201, 163, 0.1);
  margin: 1.5rem 0;
  color: #666;
  border-radius: 0 8px 8px 0;
  position: relative;
}

.meditation-quote::before, .meditation-quote::after {
  content: '"';
  font-size: 3rem;
  color: rgba(104, 166, 145, 0.2);
  position: absolute;
}

.meditation-quote::before {
  top: -10px;
  left: 10px;
}

.meditation-quote::after {
  bottom: -30px;
  right: 10px;
}

.benefits-columns {
  display: flex;
  gap: 2rem;
  margin: 1.5rem 0;
}

.benefit-column {
  flex: 1;
}

.benefit-column h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #444;
  border-bottom: 2px solid #a9c9a3;
  padding-bottom: 0.5rem;
}

/* Responsive styles for about features */
@media (max-width: 900px) {
  .about-feature-wrapper {
    flex-direction: column;
  }
  
  .about-feature-wrapper.reverse {
    flex-direction: column;
  }
  
  .about-feature {
    padding: 3rem 1.5rem;
  }
  
  .benefits-columns {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .pose-icons {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .pose-icon {
    width: 40%;
  }
  
  .about-feature-title {
    font-size: 1.8rem;
  }
  
  .meditation-quote {
    font-size: 1rem;
  }
} 