/* Journey Fees Table Module */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;250;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Bodoni:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@200;300;400;500;600;700&display=swap');

.journey-fees-table {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Header Section */
.fees-header {
  background-color: #204839;
  padding: 60px 40px;
}

.fees-header-content {
  width: 100%;
}

.fees-header-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: #93B25B;
  margin: 0 0 5px 0;
  line-height: 1.3;
}

.fees-header-description {
  font-family: 'Outfit', sans-serif;
  font-weight: 200;
  font-size: 22px;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.6;
}

.fees-header-description p {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  font-weight: 200;
  font-size: 22px;
  color: #FFFFFF;
  line-height: 1.6;
}

/* Table Section */
.fees-table-section {
  background-color: #F0F6EF;
  padding: 80px 40px;
}

.fees-table-content {
  width: 100%;
}

.fees-table-title {
  font-family: 'Libre Bodoni', serif;
  font-weight: 500;
  font-size: 40px;
  color: #204839;
  margin: 0 0 50px 0;
  text-align: center;
  line-height: 1.3;
}

/* Two Column Grid Layout */
.fees-table-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Individual Column */
.fees-column {
  display: flex;
  flex-direction: column;
}

/* Column Header */
.fees-column-header {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #93B25B;
  text-align: center;
  padding-bottom: 20px;
}

/* Divider Line - within each column */
.fees-divider {
  width: 100%;
  height: 1px;
  background-color: #204839;
  margin-bottom: 30px;
}

/* Column Rows Container */
.fees-column-rows {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Cell Styling */
.fees-cell {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #204839;
  text-align: center;
  line-height: 1.5;
}

.fees-cell p {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #204839;
  text-align: center;
  line-height: 1.5;
}

/* Disclaimer - Outside table section on white background */
.fees-disclaimer {
  font-family: 'DM Sans', sans-serif;
  font-weight: 200;
  font-size: 14px;
  color: #204839;
  margin-top: 60px;
  line-height: 1.6;
  text-align: center;
  padding: 0 40px;
  background-color: #ffffff;
}

.fees-disclaimer p {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 200;
  font-size: 14px;
  color: #204839;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .fees-header {
    padding: 50px 30px;
  }
  
  .fees-header-title {
    font-size: 28px;
  }
  
  .fees-header-description,
  .fees-header-description p {
    font-size: 20px;
  }
  
  .fees-table-section {
    padding: 60px 30px;
  }
  
  .fees-table-title {
    font-size: 36px;
    margin-bottom: 40px;
  }
  
  .fees-column-header {
    font-size: 22px;
  }
  
  .fees-cell,
  .fees-cell p {
    font-size: 22px;
  }
  
  .fees-table-grid {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .fees-header {
    padding: 40px 20px;
  }
  
  .fees-header-title {
    font-size: 26px;
  }
  
  .fees-header-description,
  .fees-header-description p {
    font-size: 18px;
  }
  
  .fees-table-section {
    padding: 50px 20px;
  }
  
  .fees-table-title {
    font-size: 32px;
    margin-bottom: 35px;
  }
  
  .fees-table-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .fees-column-header {
    font-size: 20px;
    padding-bottom: 10px;
  }
  
  .fees-table-row {
  
  .fees-cell,
  .fees-cell p {
    font-size: 20px;
    text-align: left;
  }
  
  .fees-column-rows {
    gap: 20px;
  }
  
  .fees-disclaimer,
  .fees-disclaimer p {
    font-size: 13px;
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .fees-header {
    padding: 30px 20px;
  }
  
  .fees-header-title {
    font-size: 24px;
  }
  
  .fees-header-description,
  .fees-header-description p {
    font-size: 16px;
  }
  
  .fees-table-section {
    padding: 40px 20px;
  }
  
  .fees-table-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .fees-column-header {
    font-size: 18px;
  }
  
  .fees-cell,
  .fees-cell p {
    font-size: 18px;
  }
  
  .fees-disclaimer,
  .fees-disclaimer p {
    font-size: 12px;
    margin-top: 35px;
  }
}
