@charset "UTF-8";

/* ==========================================================================
   CSS Reset & Base
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
a {
  color: #4A7A4A;
  text-decoration: none;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.8;
}
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

/* ==========================================================================
   Variables
   ========================================================================== */
:root {
  --color-main: #4A7A4A;
  --color-main-dark: #3a613a;
  --color-sub: #A8C66C;
  --color-cta: #D4B82A;
  --color-cta-hover: #bda223;
  --color-bg-light: #F7F9F5;
  --color-border: #E0E0E0;
  --header-height: 80px;
  --container-width: 1000px;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 80px 0;
}
.section-light {
  background-color: var(--color-bg-light);
}
.section-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--color-sub);
}
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.btn-cta {
  background-color: var(--color-cta);
  color: #fff !important;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.btn-cta:hover {
  background-color: var(--color-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
.btn-outline {
  border: 2px solid var(--color-main);
  color: var(--color-main);
  background-color: transparent;
}
.btn-outline:hover {
  background-color: var(--color-main);
  color: #fff !important;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 100;
  backdrop-filter: blur(5px);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}
.header .logo img {
  height: 52px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-nav-list {
  display: flex;
  gap: 20px;
}
.header-nav-list a {
  color: #333;
  font-weight: 500;
  font-size: 0.95rem;
}
.header-nav-list a:hover {
  color: var(--color-main);
}
.header-cta {
  padding: 10px 20px;
  font-size: 0.95rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  padding: calc(var(--header-height) + 60px) 0 80px;
  background: linear-gradient(rgba(30, 60, 30, 0.75), rgba(30, 60, 30, 0.85)), url('../images/venue-room.jpg') center/cover no-repeat;
  text-align: center;
  color: #fff;
}
.hero-badge {
  display: inline-block;
  background-color: var(--color-main);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: #f7f9f5;
  margin-bottom: 30px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.hero-schedule {
  background-color: #fff;
  color: #333;
  border: 2px solid var(--color-sub);
  border-radius: 8px;
  padding: 20px;
  display: inline-block;
  margin-bottom: 40px;
  text-align: left;
}
.hero-schedule p {
  margin-bottom: 5px;
  font-weight: 500;
}
.hero-schedule p:last-child {
  margin-bottom: 0;
}
.hero-schedule .date {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-main);
}
.hero-image {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ==========================================================================
   Trust Section
   ========================================================================== */
.trust-box {
  background-color: #fff;
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  border-top: 4px solid var(--color-main);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.trust-box h3 {
  font-size: 1.4rem;
  color: var(--color-main);
  margin-bottom: 20px;
}
.note {
  font-size: 0.85rem;
  color: #666;
  margin-top: 15px;
}

/* ==========================================================================
   Empathy Section
   ========================================================================== */
.empathy-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.empathy-list li {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  padding-left: 50px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.empathy-list li::before {
  content: '✓';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-color: var(--color-sub);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* ==========================================================================
   Benefits Section
   ========================================================================== */
.benefit-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.benefit-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.benefit-card h3 {
  font-size: 1.3rem;
  color: var(--color-main);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.benefit-card h3::before {
  content: '';
  display: block;
  width: 4px;
  height: 20px;
  background-color: var(--color-sub);
}
.benefit-card ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}
.benefit-card ul li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: var(--color-main);
}

/* ==========================================================================
   Reasons Section
   ========================================================================== */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.reason-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}
.reason-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-bg-light);
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 1px 1px 0 var(--color-sub);
}
.reason-card h3 {
  font-size: 1.2rem;
  color: var(--color-main);
  margin-bottom: 15px;
}

/* ==========================================================================
   Course Comparison Section
   ========================================================================== */
.course-compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.course-card {
  background-color: #fff;
  border: 2px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}
.course-card-header {
  background-color: var(--color-main);
  color: #fff;
  padding: 15px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
}
.course-card-body {
  padding: 25px;
}
.course-card-body p {
  margin-bottom: 15px;
}
.course-card-body span {
  display: inline-block;
  background-color: var(--color-bg-light);
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* ==========================================================================
   Curriculum Section
   ========================================================================== */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 30px;
}
.curriculum-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.curriculum-table th,
.curriculum-table td {
  border: 1px solid var(--color-border);
  padding: 15px;
  text-align: left;
}
.curriculum-table th {
  background-color: var(--color-bg-light);
  font-weight: 700;
  width: 20%;
}
.curriculum-table h4 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--color-main);
}

/* ==========================================================================
   Teacher Section
   ========================================================================== */
.teacher-profile {
  display: flex;
  gap: 40px;
  background-color: #fff;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.teacher-img {
  flex: 0 0 250px;
}
.teacher-img img {
  border-radius: 8px;
  width: 100%;
}
.teacher-info h3 {
  font-size: 1.5rem;
  color: var(--color-main);
  margin-bottom: 10px;
}
.teacher-info .title {
  font-weight: 700;
  margin-bottom: 15px;
}
.teacher-info .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.teacher-info .tags span {
  background-color: var(--color-bg-light);
  color: var(--color-main-dark);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  border: 1px solid var(--color-border);
}

/* ==========================================================================
   Access & Venue
   ========================================================================== */
.access-box {
  background-color: #fff;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.access-info {
  margin-bottom: 30px;
}
.access-info h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}
.map-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}
.map-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Price Section
   ========================================================================== */
.price-card {
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  border: 3px solid var(--color-main);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
}
.price-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.price-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-main-dark);
  margin-bottom: 10px;
}
.price-amount span {
  font-size: 1.2rem;
  font-weight: 500;
}

/* ==========================================================================
   Flow Section
   ========================================================================== */
.flow-list {
  max-width: 800px;
  margin: 0 auto;
}
.flow-item {
  display: flex;
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
}
.flow-step {
  background-color: var(--color-main);
  color: #fff;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.flow-content {
  padding: 20px;
  flex: 1;
}
.flow-content h3 {
  margin-bottom: 5px;
  color: var(--color-main-dark);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
}
.faq-question {
  padding: 20px 40px 20px 20px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  color: var(--color-main-dark);
}
.faq-question::before {
  content: 'Q.';
  color: var(--color-sub);
  font-size: 1.2rem;
  margin-right: 10px;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s;
}
.faq-item.active .faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  background-color: var(--color-bg-light);
}
.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 500px; /* arbitrary max-height for animation */
}
.faq-answer::before {
  content: 'A.';
  color: var(--color-main);
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: 10px;
  float: left;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
  background-color: var(--color-main-dark);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}
.cta-section h2 {
  color: #fff;
  margin-bottom: 20px;
}
.cta-section p {
  margin-bottom: 40px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.btn-mail {
  background-color: #fff;
  color: var(--color-main-dark) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: #222;
  color: #ccc;
  padding: 60px 0 20px;
}
.footer-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 40px;
  align-items: end;
}
.footer-logo {
  margin-top: 0;
  margin-bottom: 20px;
}
.footer-logo img {
  height: 180px;
  filter: brightness(0) invert(1);
}
.footer-info p {
  margin-bottom: 10px;
}
.footer-links ul li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #ccc;
}
.footer-links a:hover {
  color: #fff;
}
.copyright {
  text-align: center;
  font-size: 0.85rem;
  border-top: 1px solid #444;
  padding-top: 20px;
}

/* Content Box (Privacy, etc) */
.content-box {
  background-color: #fff;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.table {
  width: 100%;
  border-collapse: collapse;
}
.table th, .table td {
  border: 1px solid var(--color-border);
  padding: 15px;
}
.table th {
  background-color: var(--color-bg-light);
  width: 30%;
  text-align: left;
}
.content-policy h2 {
  font-size: 1.2rem;
  color: var(--color-main);
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 10px;
}

/* ==========================================================================
   Services Page & Mini Banner
   ========================================================================== */
.service-message {
  max-width: 800px;
  margin: 0 auto 60px;
  background-color: var(--color-bg-light);
  padding: 40px;
  border-radius: 8px;
  border-left: 4px solid var(--color-main);
}
.service-message p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
}
.service-message p:last-child {
  margin-bottom: 0;
}
.service-cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.service-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.service-card-header {
  background-color: var(--color-main);
  color: #fff;
  padding: 20px 30px;
}
.service-card-header h3 {
  font-size: 1.4rem;
  margin: 0;
}
.service-card-body {
  padding: 30px;
}
.service-card-section {
  margin-bottom: 25px;
}
.service-card-section:last-child {
  margin-bottom: 0;
}
.service-card-section h4 {
  color: var(--color-main-dark);
  font-size: 1.1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card-section h4::before {
  content: '■';
  color: var(--color-sub);
  font-size: 0.9rem;
}
.service-card-section ul {
  padding-left: 20px;
}
.service-card-section ul li {
  list-style-type: disc;
  margin-bottom: 8px;
}
.service-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  background-color: var(--color-bg-light);
  padding: 15px;
  border-radius: 8px;
}
.service-flow-step {
  font-weight: 700;
  color: var(--color-main-dark);
}
.service-flow-arrow {
  color: var(--color-sub);
}

.mini-banner {
  background-color: var(--color-bg-light);
  text-align: center;
  padding: 30px 20px;
  border-top: 1px solid var(--color-border);
}
.mini-banner p {
  margin-bottom: 15px;
  font-weight: 700;
  color: var(--color-main-dark);
}
.mini-banner .btn {
  padding: 10px 30px;
  font-size: 1rem;
}

/* ==========================================================================
   Mobile Fixed CTA Bottom
   ========================================================================== */
.mobile-fixed-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 10px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 99;
  text-align: center;
}
.mobile-fixed-cta .btn {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
}

/* ==========================================================================
   Media Queries (Mobile)
   ========================================================================== */
@media screen and (max-width: 768px) {
  .section { padding: 50px 0; }
  .header-nav { display: none; }
  .hero-title { font-size: 1.8rem; }
  .empathy-list, .benefit-cols, .reason-grid, .course-compare, .footer-inner {
    grid-template-columns: 1fr;
  }
  .teacher-profile {
    flex-direction: column;
    gap: 20px;
  }
  .teacher-img {
    flex: 0 0 auto;
    max-width: 200px;
    margin: 0 auto;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .mobile-fixed-cta {
    display: block;
  }
  body {
    padding-bottom: 70px; /* space for fixed cta */
  }
  .hero {
    padding-top: calc(var(--header-height) + 30px);
  }
}

/* Animations */
.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.js-hidden {
  opacity: 0;
  transform: translateY(20px);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Dropdown Menu */
.has-dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 10px 0;
  border-radius: 4px;
  min-width: 200px;
  z-index: 100;
}
.dropdown-menu li {
  display: block;
}
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--text-color);
  font-size: 0.9rem;
}
.dropdown-menu li a:hover {
  background: var(--bg-light);
  color: var(--primary-color);
}
.has-dropdown:hover .dropdown-menu {
  display: block;
}

/* Mobile Dropdown */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    padding: 0;
    padding-left: 20px;
    display: none;
  }
  .has-dropdown.active .dropdown-menu {
    display: block;
  }
}

/* Card Hover Effects */
.service-card, .price-card, .flow-item, .content-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover, .price-card:hover, .flow-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-card-image { width:100%; height:280px; overflow:hidden; }
@media (max-width: 600px) { .service-card-image { height:220px; } }
.service-card-image img { width:100%; height:100%; object-fit:cover; }
.btn-outline-white { background-color: transparent; color: #fff !important; border: 2px solid #fff; display: inline-flex; align-items: center; justify-content: center; padding: 10px 20px; border-radius: 30px; text-decoration: none; font-weight: 700; transition: background-color 0.3s, color 0.3s; }
.btn-outline-white:hover { background-color: #fff; color: var(--color-main-dark) !important; }

.btn-cta { color: #3a2f00 !important; font-weight: 700; }

/* ========== スクロール時にヘッダーへ隠れない ========== */
section[id], [id] { scroll-margin-top: 90px; }

/* ハンバーガーボタン（PCでは非表示） */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; background: none; border: none; cursor: pointer; padding: 0;
}
.hamburger span {
  display: block; width: 26px; height: 3px;
  background: var(--color-main); border-radius: 2px; transition: 0.3s;
}
/* ========== レスポンシブ対応 ========== */
@media (max-width: 1024px) {
  .section { padding: 60px 0; }
  .hero-title { font-size: 2.1rem; }
  .header-nav-list { gap: 14px; }
  .header-nav-list a { font-size: 0.88rem; }
}
@media (max-width: 768px) {
  :root { --header-height: 64px; }
  .section { padding: 48px 0; }
  .container { padding: 0 16px; }
  body { line-height: 1.7; }
  .empathy-list, .benefit-cols, .reason-grid, .course-compare,
  .service-cards { grid-template-columns: 1fr; gap: 16px; }
  .hero-title { font-size: 1.7rem; line-height: 1.45; }
  .hero-subtitle { font-size: 1rem; }
  .hero-schedule { display: block; padding: 16px; }
  .hero .btn { width: 100%; padding: 16px 20px !important; font-size: 1.1rem !important; }
  .teacher-profile { flex-direction: column; gap: 20px; padding: 24px; }
  .teacher-img { flex: none; max-width: 220px; margin: 0 auto; }
  .section-title { font-size: 1.4rem; }
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .header-nav.is-open {
    display: flex; flex-direction: column; align-items: stretch;
    position: fixed; top: var(--header-height); left: 0; width: 100%;
    background: #fff; padding: 16px; box-shadow: 0 8px 20px rgba(0,0,0,0.1); gap: 0;
  }
  .header-nav.is-open .header-nav-list { flex-direction: column; gap: 0; }
  .header-nav.is-open .header-nav-list li { border-bottom: 1px solid var(--color-border); }
  .header-nav.is-open .header-nav-list a { display: block; padding: 14px 8px; }
  .header-nav.is-open .header-cta { margin-top: 12px; text-align: center; }
}
@media (max-width: 380px) {
  .hero-title { font-size: 1.45rem; }
  .btn { padding: 13px 24px; font-size: 1rem; }
}



/* -------------------------------------------
 * Refund Policy (Hero and General usage)
 * ------------------------------------------- */
.hero-refund-policy {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  font-size: 0.95rem;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #ddd;
  color: #333333;
}
.hero-refund-policy h4 {
  font-weight: bold;
  margin-bottom: 10px;
  color: #234f35 !important;
}
.hero-refund-policy p {
  color: #333333 !important;
  margin-top: 10px;
}
.hero-refund-policy a {
  color: #1f5f78 !important;
  text-decoration: underline !important;
}
