/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  /* --primary-color: rgb(12, 179, 12); */
  --primary-color: #007bff;
  --secondary-color: #333;
  --third-color: #fff;
  --btn-hover2: #dc2f3d;
  --btn-hover: #0056b3;
}

/* Body Styling */
body {
  font-family: Arial, sans-serif;
  background-color: var(--third-color);
  color: var(--secondary-color);
}
h1 {
  font-size: 2.7rem;
}
h2 {
  font-size: 2.2rem;
}
h3 {
  font-size: 1.8rem;
}
h4 {
  font-size: 1.5rem;
}
p {
  font-size: 1rem;
}

/*********************** Header Section ******************/
header {
  background-color: var(--primary-color);
  padding: 1.25rem;
}

/* Flex Container */
.header-sec {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

/* Column 1 Styling */
.header-sec .col-1 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 15.625rem; /* 250px */
  margin-right: 1.25rem; /* 20px */
}

.header-sec .col-1 h2 {
  color: var(--third-color);
  display: flex;
  align-items: center;
}

.header-sec .col-1 h2 i {
  margin-right: 0.625rem; /* 10px */
}

.header-sec .col-1 p {
  color: var(--third-color);
  font-weight: bold;
}

/* Column 2 Styling */
.col-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem; /* 10px */
  justify-content: center;
}

.timing-div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-sec .circle {
  width: 3.75rem; /* 60px */
  height: 3.75rem; /* 60px */
  border-radius: 50%;
  background-color: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.3125rem; /* 5px */
}

.header-sec .circle span {
  font-size: 1.25rem; /* 20px */
  color: var(--third-color);
}

.header-sec .time {
  font-size: 0.875rem; /* 14px */
  color: var(--third-color);
}
/* ************************** common elements styling ************************** */
.cta-button {
  display: block;
  background-color: var(--primary-color);
  color: var(--third-color);
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 8px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  border: none;
  box-shadow: inset 0 0 5px 0.3px var(--secondary-color);
}
.cta-button:hover {
  cursor: pointer;
  background-color: var(--btn-hover);
}
.cta-button:active {
  box-shadow: inset 0 0 10px 1.5px var(--secondary-color);
}

.button-main-text {
  font-size: 1.7rem;
  font-weight: bold;
}

.button-sub-text {
  font-size: 1.3rem;
  opacity: 0.9;
}
.chevron-arrows {
  font-size: 1.3rem;
  position: relative;
  top: 2px;
}
.sec6 .chevron-arrows,
.sec14 .chevron-arrows,
.sec3 .chevron-arrows,
.sec17 .chevron-arrows {
  top: -1px;
}

/* Responsive Design */
@media (max-width: 48rem) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.3rem;
  }
  h4 {
    font-size: 1.2rem;
  }
  p {
    font-size: 0.9rem;
  }

  /* 768px */
  .header-sec {
    flex-direction: column;
    align-items: center;
  }

  .header-sec .col-1 {
    margin-right: 0;
    margin-bottom: 1.25rem; /* 20px */
  }
  .header-sec .col-1 h2 {
    text-align: center;
    justify-content: center;
  }
  .header-sec .col-1 p {
    text-align: center;
  }

  .header-sec .col-2 {
    justify-content: flex-start;
  }
  .chevron-arrows {
    font-size: 0.9rem;
    position: relative;
    /* top: 2px; */
  }
  .sec6 .chevron-arrows,
  .sec11 .chevron-arrows,
  .sec14 .chevron-arrows,
  .sec3 .chevron-arrows,
  .sec17 .chevron-arrows {
    top: -1px;
  }

  .cta-button {
    padding: 10px;
    border-radius: 8px;
    max-width: 1100px;
  }

  .button-main-text {
    font-size: 1.2rem;
  }

  .button-sub-text {
    font-size: 0.8rem;
    opacity: 0.9;
  }
}

/*********************** Section 1 ******************/
.sec1 {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  gap: 1.25rem; /* 20px */
  color: var(--third-color);
  padding-top: 15px;
  padding-bottom: 20px;
  background-color: rgb(0, 32, 60);
  outline: none;
  background-image: url(./images/sec1_bg.png);
  background-position: center center;
}

.sec1 .sec1-div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48%;
}

.sec1 .sec1-div .sec1-img {
  width: 500px;
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.sec1 .sec2-div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 48%;
  padding: 1rem;
}

.sec1 .sec2-div h1 {
  text-align: center;
  margin-bottom: 0.625rem; /* 10px */
  color: var(--third-color);
}

.sec1 .sec2-div h2,
.sec1 .sec2-div h4 {
  text-align: center;
  margin-bottom: 0.5rem; /* 8px */
  color: var(--third-color);
  font-weight: normal;
}
.sec1 .sec2-div h2 {
  color: var(--primary-color);
}

.sec1 .sec2-div hr {
  border: 0;
  height: 0.5px;
  opacity: 0.8;
  background-color: var(--third-color);
  margin: 1rem 0;
}

.sec1 .sec2-div .event-anchor {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem; /* 8px */
  /* background-color: var(--primary-color); */
  color: var(--third-color);
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 2rem;
  text-align: center;
  margin-top: 1rem;
  min-height: 80px;
  /* transition: background-color 0.3s ease;
  position: relative; */
}

/* .sec1 .sec2-div .event-anchor:hover {
  opacity: 0.8;
} */
.sec1 .sec2-div .event-anchor span:last-of-type {
  display: flex;
}
/* .sec1 .sec2-div .event-anchor i {
  font-size: 1.2rem;
  position: relative;
  top: -3px;
} */

/*********************** Responsive Design ******************/
@media (max-width: 48rem) {
  /* 768px */
  .sec1 {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .sec1 .sec1-div,
  .sec1 .sec2-div {
    width: 100%;
  }

  .sec1 .sec2-div {
    padding: 1rem 0;
  }

  .sec1 .sec2-div .event-anchor {
    align-self: center;
    font-size: 1rem; /* 14px */
    padding: 0.5rem 1rem;
    min-height: 50px;
  }
  /* .sec1 .sec2-div .event-anchor i {
    font-size: 0.8rem;
    position: relative;
    top: -1px;
  } */
}

/******************************* Stats Section ***************************/
/* Stats Section */
.stats-section {
  /* background-color: #f9f9f9; */
  background-color: var(--third-color);
  padding: 3rem 1rem;
  text-align: center;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
}

.stats-title {
  font-size: 2rem;
  /* color: #333; */
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.stat-item {
  /* background-color: #fff;
  border: 1px solid #ddd; */
  background-color: var(--third-color);
  border: 1px solid var(--third-color);
  border-radius: 8px;
  padding: 2rem;
  width: 250px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.2rem;
  color: var(--secondary-color);
  opacity: 0.8;
}

.enroll-button {
  margin-top: 2rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  /* color: #fff; */
  color: var(--third-color);
  /* background-color: #007bff; */
  background-color: var(--primary-color);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.enroll-button:hover {
  /* background-color: #0056b3; */
  background-color: var(--btn-hover);
}

/* Responsive Design */
@media (max-width: 768px) {
  .stat-item {
    width: 100%;
  }
}

/* Modal Styling */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
  padding: 2rem;
}

.modal-content {
  background-color: var(--third-color);
  margin: 10% auto;
  padding: 2rem;
  border-radius: 8px;
  max-width: 400px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 1.5rem;
  font-weight: bold;
  /* color: #333; */
  color: var(--secondary-color);
  cursor: pointer;
}

.close-btn:hover {
  /* color: #ff0000; */
  color: var(--btn-hover2);
}

.modal-content h2 {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: var(--secondary-color);
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;

  color: var(--secondary-color);
  opacity: 0.9;
}

.form-group input {
  width: 100%;
  padding: 0.8rem;
  font-size: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.368);
  border-radius: 5px;
}

.submit-btn {
  padding: 0.8rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--third-color);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

.submit-btn:hover {
  background-color: var(--btn-hover);
}
/* Success, Error, and Already Enrolled Modals */
.success-modal,
.error-modal,
.already-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--third-color);
  color: var(--secondary-color);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* border: 2px solid red; */
}

.success-modal p,
.error-modal p,
.already-modal p {
  margin: 0;
  font-size: 1.1rem;
}

.success-modal {
  background-color: #d4edda;
  color: #155724;
}
.error-modal {
  background-color: #f8d7da;
  color: #721c24;
}
.already-modal {
  background-color: #fff3cd;
  color: #856404;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    display: none;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .modal-content {
    width: 90%;
  }
}

/*********************** Section 2 ******************/

.sec2 {
  background-color: var(--third-color);
  padding: 1rem;
  width: 100%;
}
.sec2 h2:first-of-type {
  color: var(--third-color);
}
.sec2 .sec2-card {
  background-color: var(--third-color);
  margin: 0 auto;
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem;
  box-shadow: 0 0 5px 1px var(--secondary-color);
  border-radius: 5px;
}
.sec2 .sec2-card h2 {
  text-align: center;
  width: 90%;
  font-weight: bold;
}
.sec2 .sec2-card h2:first-of-type {
  background-color: var(--primary-color);
  padding: 0.5rem;
  width: auto;
}
.sec2 .sec2-card h4 {
  font-style: italic;
}
.sec2 .sec2-card .sub-card1 {
  padding: 1rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 5%;
}
.sec2 .sec2-card .sub-card1 .img-div,
.sec2 .sec2-card .sub-card1 ul {
  width: 50%;
}
.sec2 .sec2-card .sub-card1 .img-div img {
  max-width: 100%;
}
.sec2 .sec2-card .sub-card1 ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.sec2 .sec2-card .sub-card1 ul li {
  display: flex;
  justify-content: start;
  gap: 5px;
}
.sec2 .sec2-card .sub-card1 ul li span {
  font-size: 1.5rem;
}

/***************** Responsive design ******************/

@media (max-width: 48rem) {
  /* 768px */
  .sec2 {
    padding: 2rem 0;
  }

  .sec2 .sec2-card {
    border-radius: 0;
    width: 100%;
  }
  .sec2 .sec2-card h2 {
    width: 100%;
  }
  .sec2 .sec2-card .sub-card1 {
    flex-direction: column;
    gap: 1rem;
    padding: 0;
  }
  .sec2 .sec2-card .sub-card1 .img-div,
  .sec2 .sec2-card .sub-card1 ul {
    width: 100%;
    gap: 1rem;
  }
  .sec2 .sec2-card .sub-card1 ul li span {
    font-size: 1rem;
  }
}

/* *********** sub-card2   ************ */

.sub-card2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.sub-card2 .title-div h1 {
  margin-top: 20px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}
.sub-card2 .text-dev h4 {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  width: full;
}

.greenbg-div {
  text-align: center;
  margin-top: 10px;
  background-color: var(--primary-color);
  padding: 10px;
  padding-left: 25px;
  padding-right: 25px;
  color: var(--third-color);
  border-radius: 5px;
}

/****************** Section 3 ********************/

.sec3 {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: rgb(0, 32, 60);
  background-image: url(./images/sec1_bg.png);
}

.banner-part {
  padding: 40px 20px;
  background-color: rgb(0, 32, 60);
  width: 100%;
}

.banner-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.text-line {
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--third-color);
  line-height: 1.2;
  letter-spacing: 1px;
}

.highlight-text {
  font-size: 3rem;
  font-weight: bold;
  background-color: var(--primary-color);
  color: var(--third-color);
  padding: 5px 20px;
  line-height: 1.2;
  letter-spacing: 1px;
}
.highlight-text.center {
  text-align: center;
}

.quote-start {
  font-size: 4rem;
  color: var(--third-color);
  font-weight: bold;
  line-height: 1;
}

.white-section {
  background-color: var(--third-color);
  font-size: larger;
  width: 80%;
  padding: 40px 0;
  border-radius: 20px;
  margin-left: 130px;
  margin-bottom: 50px;
}

.content-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-title {
  color: rgb(0, 32, 60);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
  font-weight: normal;
}

.red-line {
  height: 3px;
  background-color: var(--primary-color);
  width: 100px;
  margin: 20px auto;
}

.statements-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.statement-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  text-align: left;
}

.bullet-point {
  color: var(--primary-color);
  font-size: 1.8rem;
  line-height: 1.5;
}

.statement-content {
  color: rgb(0, 32, 60);
  font-size: 1.8rem;
  line-height: 1.5;
}

.statement-bold {
  font-weight: bold;
  color: rgb(0, 32, 60);
}

.statement-regular {
  color: rgb(0, 32, 60);
}

.greenbg2-div {
  text-align: center;
  margin-top: 30px;
  background-color: var(--primary-color);
  padding: 10px 25px;
  color: var(--third-color);
  border-radius: 5px;
}

/* Responsive adjustments for large tablets and small desktops */
@media (max-width: 1200px) {
  .white-section {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
  }

  .content-section {
    max-width: 800px;
  }

  .text-line,
  .highlight-text {
    font-size: 3rem;
  }

  .quote-start {
    font-size: 3.5rem;
  }
}

/* Responsive adjustments for tablets */
@media (max-width: 768px) {
  .white-section {
    width: 95%;
    margin-left: 2.5%;
    margin-right: 2.5%;
    padding: 30px 0;
  }

  .text-line,
  .highlight-text {
    font-size: 2.5rem;
    text-align: center;
  }

  .quote-start {
    font-size: 3rem;
  }

  .content-title {
    font-size: 1.5rem;
  }

  .bullet-point,
  .statement-content {
    font-size: 1.5rem;
  }

  .banner-part {
    padding: 30px 15px;
  }
}

/* Responsive adjustments for large phones */
@media (max-width: 576px) {
  .white-section {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: 10px;
    padding: 20px 0;
  }
  .content-section {
    padding: 0 10px;
  }
  .sec3 .cta-button {
    margin-top: 1rem;
  }

  .text-line,
  .highlight-text {
    font-size: 1.5rem;
  }

  .quote-start {
    font-size: 2.5rem;
  }

  .content-title {
    font-size: 1.25rem;
  }

  .bullet-point,
  .statement-content {
    font-size: 1.2rem;
  }

  .banner-part {
    padding: 20px 10px;
  }

  .statement-item {
    gap: 10px;
  }
}

/* Responsive adjustments for small phones */
@media (max-width: 380px) {
  .text-line,
  .highlight-text {
    font-size: 1.75rem;
  }

  .quote-start {
    font-size: 2.25rem;
  }

  .content-title {
    font-size: 1.1rem;
  }

  .bullet-point,
  .statement-content {
    font-size: 1rem;
  }

  .greenbg2-div {
    padding: 8px 15px;
  }
}

/********************** Section 4 ********************/

.sec4 {
  padding: 60px 0;
  background-color: #ffffff;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-content {
  text-align: center;
  margin-bottom: 40px;
}

.main-title {
  font-size: 2.8rem;
  color: #002a4e;
  line-height: 1.3;
  margin-bottom: 30px;
  font-weight: bold;
}

.content-wrapper {
  /* max-width: 1000px; */
  margin: 0 auto;
}

.profile-section {
  display: flex;
  gap: 70px;
  margin-bottom: 40px;
}

.profile-image {
  flex: 0 0 400px;
}

.profile-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.profile-content {
  flex: 1;
}

.from-text {
  font-size: 1.8rem;
  color: #002a4e;
  margin-bottom: 15px;
}

.greeting {
  font-size: 1.8rem;
  color: #002a4e;
  margin-bottom: 20px;
}

.intro-text {
  font-size: 1.8rem;
  line-height: 1.6;
  color: #333;
}

.story-section {
  max-width: 1200px;
  margin: 0 auto;
}

.story-section h3 {
  color: #002a4e;
  font-size: 2rem;
  margin-bottom: 20px;
}

.story-text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
  width: 100%;
}

.bold-text {
  font-weight: bold;
  color: #002a4e;
}

.italic {
  font-style: italic;
}

.highlight-box {
  background-color: #f5f8fa;
  padding: 30px;
  text-align: center;
  margin: 40px 0;
  border-radius: 8px;
}

.highlight-box h3 {
  color: #002a4e;
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.highlight-box p {
  font-size: 1.4rem;
  color: #002a4e;
}

.footnote {
  font-size: 1.5rem;
  color: #666;
  font-style: italic;
  margin-top: 30px;
  text-align: center;
}

.greenbg3-div {
  text-align: center;
  margin-top: 30px;
  background-color: var(--primary-color);
  padding: 10px;
  padding-left: 25px;
  padding-right: 25px;
  color: var(--third-color);
  border-radius: 5px;
}

@media (max-width: 968px) {
  .profile-section {
    flex-direction: column;
  }

  .profile-image {
    flex: 0 0 auto;
    max-width: 300px;
    margin: 0 auto;
  }

  .main-title {
    font-size: 2.2rem;
  }

  .story-section {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .sec4 {
    padding: 20px 0;
  }
  .main-title {
    font-size: 1.8rem;
  }

  .profile-image {
    max-width: 100%;
  }

  .highlight-box h3 {
    font-size: 1.6rem;
  }

  .highlight-box p {
    font-size: 1.2rem;
  }
  .from-text {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .greeting {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}

/**************** Section 5**************/

.sec5 {
  background: rgb(0, 32, 60);
  padding: 60px 20px;
  color: var(--third-color);
  position: relative;
  z-index: 1;
  text-align: center;
}

.sec5::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(./images/sec1_bg.png);
  background-position: center center;
  opacity: 0.1;
  z-index: -1;
}

.challenge-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.title-top {
  font-size: 2.5rem;
  font-weight: normal;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--third-color);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.main-title {
  margin: 20px 0;
}

.main-title .title-line {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--third-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.date-box {
  background-color: var(--primary-color); /* Brighter green */
  color: var(--third-color);
  padding: 30px 40px;
  font-size: 1.9rem;
  font-weight: bold;
  margin: 30px 0;
  max-width: 1100px;
  width: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.description {
  font-size: 1.8rem;
  line-height: 1.5;
  max-width: 1100px;
  margin: 30px auto;
  color: var(--third-color);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.expectation-text {
  font-size: 2.5rem;
  color: #40b4e5; /* Light blue color */
  font-family: "Brush Script MT", cursive;
  margin-top: 40px;
  font-style: italic;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 968px) {
  .title-top {
    font-size: 2rem;
  }

  .main-title .title-line {
    font-size: 3rem;
  }

  .date-box {
    font-size: 1.4rem;
    padding: 15px 20px;
  }

  .description {
    font-size: 1.3rem;
  }

  .expectation-text {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .title-top {
    font-size: 1.5rem;
  }

  .main-title .title-line {
    font-size: 2rem;
  }

  .date-box {
    font-size: 1.2rem;
    padding: 15px 10px;
  }

  .description {
    font-size: 1.1rem;
  }

  .expectation-text {
    font-size: 1.8rem;
    margin-top: 10px;
  }
  .sec5 {
    padding: 20px 10px;
  }
  .title-top {
    margin-bottom: 10px;
  }

  .main-title {
    margin: 10px 0;
  }
  .date-box {
    padding: 10px 15px;
    margin: 10px 0;
  }
  .description {
    margin: 10px auto;
  }
}

/*************** Section 6 **************/

.common-sec {
  padding: 0;
  background: transparent;
  margin-bottom: -1px;
}

.day-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  background-color: var(--third-color);
}

.blue-header {
  background-color: #009ac5;
  padding: 30px 40px;
}

.day-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.calendar-icon {
  font-size: 1.8rem;
  color: var(--third-color);
}

.day-text {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--third-color);
}

.main-title {
  margin-bottom: 20px;
}

.main-title h2 {
  font-size: 2.8rem;
  color: var(--third-color);
  margin-bottom: 10px;
  line-height: 1.2;
}

.main-title h3 {
  font-size: 2rem;
  color: var(--third-color);
  font-weight: normal;
  line-height: 1.3;
  width: 70%;
}

.white-content {
  background-color: var(--third-color);
  padding: 40px;

  /* border: 1px solid red; */
}

.content-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;

  /* border: 1px solid red; */
}

.text-content {
  flex: 1;
}

.intro-text {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 20px;
}

.benefits-list {
  /* border: 1px solid red; */
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 20px;
  color: #333;
  font-size: 1.5rem;
  line-height: 1.5;
}

.arrow {
  color: #ff0000;
  font-size: 1.4rem;
  line-height: 1.4;
  flex-shrink: 0;
}

.image-container {
  flex: 0 0 400px;
  position: relative;
  margin-top: -80px;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.greenbg4-div {
  text-align: center;
  margin-top: 30px;
  background-color: var(--primary-color);
  padding: 10px;

  color: var(--third-color);
  border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 968px) {
  .blue-header {
    padding: 20px;
  }

  .white-content {
    padding: 20px;
  }

  .main-title h2 {
    font-size: 2.2rem;
  }

  .main-title h3 {
    font-size: 1.6rem;
  }

  .content-wrapper {
    flex-direction: column;
  }

  .image-container {
    flex: 0 0 auto;
    max-width: 100%;
    order: -1;
    margin-top: 0px;
  }
}

@media (max-width: 480px) {
  .content-wrapper {
    gap: 20px;
  }
  .day-container {
    border-radius: 0;
  }
  .main-title h2 {
    font-size: 1.8rem;
  }

  .main-title h3 {
    font-size: 1.4rem;
    width: 100%;
  }

  .intro-text {
    font-size: 1.1rem;
  }

  .benefits-list li {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  .image-container {
    margin-top: 0px;
  }
}

/******************* Section 10 *********************/

.sec10 {
  padding: 0;
  background: transparent;
  margin-bottom: -1px;
}

.sec10 .day-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  background-color: var(--third-color);
}

.sec10 .blue-header {
  background-color: #00b3e6;
  padding: 30px 40px;
}

.sec10 .day-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.sec10 .calendar-icon {
  font-size: 1.8rem;
  color: var(--third-color);
}

.sec10 .day-text {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--third-color);
}

.sec10 .main-title {
  margin-bottom: 20px;
}

.sec10 .main-title h2 {
  font-size: 3rem;
  color: var(--third-color);
  margin-bottom: 10px;
  line-height: 1.2;
  font-weight: bold;
}

.sec10 .white-content {
  background-color: var(--third-color);
  padding: 40px;
}

.sec10 .content-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.sec10 .text-content {
  flex: 1;
}

.sec10 .description-text {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.6;
}

.sec10 .description-text:last-child {
  margin-bottom: 0;
}

.sec10 .italic {
  font-style: italic;
}

.sec10 .image-container {
  flex: 0 0 400px;
}

.sec10 .image-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.sec10 .greenbg-div {
  text-align: center;
  margin-top: 30px;
  background-color: var(--primary-color);
  padding: 10px;

  color: var(--third-color);
  border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 968px) {
  .sec10 .blue-header {
    padding: 20px;
  }

  .sec10 .white-content {
    padding: 20px;
  }

  .sec10 .main-title h2 {
    font-size: 2.2rem;
  }

  .sec10 .content-wrapper {
    flex-direction: column;
  }

  .sec10 .image-container {
    flex: 0 0 auto;
    max-width: 100%;
    order: -1;
  }

  .sec10 .description-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .sec10 .main-title h2 {
    font-size: 1.8rem;
  }

  .sec10 .description-text {
    font-size: 1.1rem;
  }

  .sec10 .day-text {
    font-size: 1.5rem;
  }

  .sec10 .calendar-icon {
    font-size: 1.5rem;
  }
}

/****************** Section 11 ******************/

.sec11 {
  padding: 40px 20px;
  background-color: var(--third-color);
  margin-top: 15px;
}

.sec11 .cta-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.sec11 .main-heading {
  color: #002147; /* Dark navy blue */
  font-size: 3.5rem;
  font-weight: bolder;
  margin-bottom: 30px;
  line-height: 1.2;
}

.sec11 .description {
  font-size: 1.4rem;
  color: #333;
  max-width: 800px;
  margin: 0 auto 25px;
  line-height: 1.6;
}

.sec11 .cta-text {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 30px;
}

.sec11 .cta-text strong {
  color: #002147;
}

/* .sec11 .cta-button {
  display: block;
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--primary-color);
  color:var(--third-color);
  text-decoration: none;
  border-radius: 8px;
  padding: 20px;
  transition: background-color 0.3s ease;
}

.sec11 .cta-button:hover {
  background-color: var(--ctaBtn-hover);
}

.sec11 .button-main-text {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.sec11 .button-sub-text {
  font-size: 1.2rem;
  opacity: 0.9;
} */

/* Responsive Design */
@media (max-width: 768px) {
  .sec11 .main-heading {
    font-size: 2.2rem;
  }

  .sec11 .description {
    font-size: 1.2rem;
    padding: 0 20px;
  }

  .sec11 .cta-text {
    font-size: 1.2rem;
  }

  .sec11 .button-main-text {
    font-size: 1.4rem;
  }

  .sec11 .button-sub-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .sec11 {
    padding: 20px 10px;
  }
  /* .sec11 .main-heading {
    font-size: 1.8rem;
  }

  .sec11 .cta-button {
    margin: 0 20px;
  }

  .sec11 .description {
    font-size: 1.1rem;
  } */
}

/****************** Section 12 *****************/

.sec12 {
  padding: 60px 20px;
  background-color: var(--third-color);
}

.sec12 .content-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sec12 .bio-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: start;
}

/* Images Column Styles */
.sec12 .images-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sec12 .family-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sec12 .book-image {
  width: 100%;
  margin-bottom: 20px;
}

/* Text Content Styles */
.sec12 .subtitle {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-style: italic;
}

.sec12 .name {
  color: #002147;
  font-size: 3.5rem;
  font-weight: bolder;
  margin-bottom: 30px;
}

.sec12 .bio-text {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.sec12 .italic {
  font-style: italic;
  color: #666;
}

.sec12 .bold {
  font-weight: bold;
  font-size: 1.4rem;
  color: #002147;
}
/* 
.sec12 .cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color:var(--third-color);
  text-decoration: none;
  padding: 30px 30px;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 20px;
  text-align: center;
} */

/* Responsive Design */
@media (max-width: 968px) {
  .sec12 .bio-grid {
    grid-template-columns: 1fr;
  }

  .sec12 .name {
    font-size: 2.4rem;
  }

  .sec12 .images-column {
    order: -1;
  }
}

@media (max-width: 480px) {
  .sec12 .subtitle {
    font-size: 1.4rem;
  }

  .sec12 .name {
    font-size: 2rem;
  }

  .sec12 .bio-text {
    font-size: 1.1rem;
  }
}

/****************** Section 13**********************/

.sec13 {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.sec13 .content-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sec13 .main-heading {
  color: #002147;
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.2;
}

.sec13 .testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.sec13 .testimonial-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sec13 .testimonial-screenshot {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.sec13 .testimonial-screenshot:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.sec13 .testimonial-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Responsive Design */
@media (max-width: 968px) {
  .sec13 .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .sec13 .main-heading {
    font-size: 2.2rem;
  }

  .sec13 .testimonial-column {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .sec13 {
    padding: 40px 15px;
  }

  .sec13 .main-heading {
    font-size: 1.8rem;
  }

  .sec13 .testimonial-column {
    gap: 15px;
  }
}

/********************* Section 14*********************/

.sec14 {
  padding: 80px 20px;
  background-color: #f8f9fa;
  text-align: center;
}

.sec14 .content-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sec14 .main-heading {
  color: #002147; /* Dark navy blue */
  font-size: 3.1rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 30px;
}

.sec14 .main-heading em {
  font-style: italic;
}

.sec14 .sub-heading {
  color: var(--primary-color); /* Red color */
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.sec14 .challenge-heading {
  color: #002147;
  font-size: 2.9rem;
  font-weight: bold;
  margin-bottom: 30px;
}
/* 
.sec14 .cta-button {
  display: block;
  background-color: var(--primary-color);
  color:var(--third-color);
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 8px;
  max-width: 1100px;
  margin: 0 auto;
}
.sec14 .cta-button:hover {
  background-color: var(--ctaBtn-hover);
}

.sec14 .button-main-text {
  font-size: 2.8rem;
  font-weight: bold;
}

.sec14 .button-sub-text {
  font-size: 1.5rem;
  opacity: 0.9;
} */

/* Responsive Design */
@media (max-width: 968px) {
  .sec14 {
    padding: 60px 20px;
  }

  .sec14 .main-heading {
    font-size: 2.2rem;
  }

  .sec14 .sub-heading {
    font-size: 1.5rem;
  }

  .sec14 .challenge-heading {
    font-size: 2rem;
  }

  .sec14 .button-main-text {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .sec14 {
    padding: 40px 15px;
  }

  .sec14 .main-heading {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .sec14 .sub-heading {
    font-size: 1.3rem;
  }

  .sec14 .challenge-heading {
    font-size: 1.6rem;
  }

  .sec14 .button-main-text {
    font-size: 1.3rem;
  }

  .sec14 .button-sub-text {
    font-size: 1rem;
  }

  /* .sec14 .cta-button {
    padding: 20px;
    margin: 0 15px;
  } */
}

/**************** Sectoin 15******************/

.sec15 {
  padding: 80px 20px;
  background-color: #0a1e3c; /* Dark navy background */
  color: var(--third-color);
}

.sec15 .content-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sec15 .top-heading {
  color: #00b3e6; /* Light blue */
  font-size: 2rem;
  text-align: center;
  font-style: italic;
  margin-bottom: 30px;
  font-weight: normal;
}

.sec15 .main-heading-wrapper {
  text-align: center;
  margin-bottom: 50px;
}

.sec15 .main-heading {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.sec15 .sub-heading {
  background-color: var(--primary-color); /* Red background */
  color: var(--third-color);
  padding: 15px;
  font-size: 2rem;
  font-weight: bold;
}

.sec15 .comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.sec15 .comparison-column {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
}

.sec15 .column-heading {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  text-decoration: underline;
}

.sec15 .image-container {
  margin-bottom: 30px;
}

.sec15 .image-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.sec15 .checklist {
  list-style: none;
  padding: 0;
}

.sec15 .checklist li {
  padding-left: 35px;
  position: relative;
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.5;
}

.sec15 .checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf50; /* Green checkmark */
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 968px) {
  .sec15 .comparison-grid {
    grid-template-columns: 1fr;
  }

  .sec15 .main-heading {
    font-size: 2.4rem;
  }

  .sec15 .sub-heading {
    font-size: 1.6rem;
  }

  .sec15 .column-heading {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .sec15 {
    padding: 40px 15px;
  }

  .sec15 .top-heading {
    font-size: 1.5rem;
  }

  .sec15 .main-heading {
    font-size: 2rem;
  }

  .sec15 .sub-heading {
    font-size: 1.4rem;
  }

  .sec15 .checklist li {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}

/**************** Sectoin 16  ******************/

.sec16 {
  padding: 60px 20px;
  background-color: var(--third-color);
}

.sec16 .content-container {
  max-width: 1200px;
  position: relative;
  margin: -100px auto;
  border: 2px dashed #00b3e6;
  padding: 40px;
  border-radius: 12px;
  background-color: var(--third-color);
}

.sec16 .header-section {
  text-align: center;
  margin-bottom: 40px;
}

.sec16 .main-heading {
  color: var(--primary-color);
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.sec16 .sub-heading {
  color: #002147;
  font-size: 3rem;
  font-weight: bold;
}

.sec16 .features-list {
  margin-bottom: 40px;
}

.sec16 .feature-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.sec16 .check-icon {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: bold;
}

.sec16 .gift-icon {
  font-size: 1.4rem;
}

.sec16 .feature-content {
  font-size: 1.6rem;
  line-height: 1.5;
}

.sec16 .pricing-section {
  text-align: center;
  margin-bottom: 40px;
}

.sec16 .original-price {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.sec16 .price-heading {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.sec16 .highlight-price {
  color: #e63946;
}
/* 
.sec16 .cta-button {
  display: inline-block;
  background-color: #228c04;
  color:var(--third-color);
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 2rem;
  font-weight: bold;
  text-decoration: none;
}

.sec16 .cta-button:hover {
  background-color: var(--ctaBtn-hover);
} */

.sec16 .event-details {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  margin-top: 40px;
}

.sec16 .detail-column {
  text-align: center;
}

.sec16 .detail-column .icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.sec16 .detail-column h4 {
  color: #002147;
  font-size: 1.6rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.sec16 .detail-column p {
  font-size: 1.5rem;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .sec16 .content-container {
    padding: 20px;
  }

  .sec16 .main-heading {
    font-size: 2.2rem;
  }

  .sec16 .sub-heading {
    font-size: 1.6rem;
  }

  .sec16 .event-details {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sec16 .price-heading {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .sec16 .main-heading {
    font-size: 1.8rem;
  }

  .sec16 .sub-heading {
    font-size: 1.4rem;
  }

  .sec16 .feature-content {
    font-size: 1rem;
  }
  .sec16 .feature-item {
    margin-bottom: 10px;
  }

  /* .sec16 .cta-button {
    font-size: 1.2rem;
    padding: 12px 30px;
  } */
}

/**************** Sectoin 17  ******************/

.sec17 {
  padding: 60px 20px;
  background-color: #0a1e3c; /* Dark navy background */
  color: var(--third-color);
  background-image: url(./images/sec1_bg.png);
}

.sec17 .content-container {
  max-width: 1100px;
  margin: 0 auto;
}

.sec17 .main-heading {
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.sec17 .sub-heading {
  text-align: center;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 40px;
}

.sec17 .faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sec17 .faq-item {
  background: white;
  border-radius: 8px;
  overflow: hidden;
}

/* Hide checkbox */
.sec17 .faq-toggle {
  display: none;
}

.sec17 .faq-question {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px;
  background: white;
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.sec17 .faq-question:hover {
  background-color: var(--third-color);
}

.sec17 .plus-icon {
  color: #e63946; /* Red color */
  font-weight: bold;
  font-size: 1.4rem;
  margin-right: 15px;
  min-width: 20px;
  transition: transform 0.3s ease;
}

.sec17 .faq-answer {
  max-height: 0;
  overflow: hidden;
  background: var(--third-color);
  color: #333;
  transition: max-height 0.3s ease-out;
}

.sec17 .faq-answer p {
  padding: 0 20px 20px;
  margin: 0;
}

/* Show answer when checkbox is checked */
.sec17 .faq-toggle:checked ~ .faq-answer {
  max-height: 500px; /* Arbitrary large value */
}

/* Rotate plus icon when checkbox is checked */
.sec17 .faq-toggle:checked ~ .faq-question .plus-icon {
  transform: rotate(45deg);
}

.sec17 .greenbg-div {
  text-align: center;
  margin-top: 30px;
  background-color: rgb(30, 171, 30);
  color: var(--third-color);
  border-radius: 5px;
}
.sec17 .cta-button {
  margin-top: 1rem;
}

/* Responsive Design */

@media (max-width: 768px) {
  .sec17 .main-heading {
    font-size: 2.4rem;
  }

  .sec17 .sub-heading {
    font-size: 1.3rem;
  }

  .sec17 .faq-question {
    font-size: 1rem;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .sec17 {
    padding: 40px 15px;
  }

  .sec17 .main-heading {
    font-size: 2rem;
    margin-top: 1rem;
  }

  .sec17 .sub-heading {
    font-size: 1.1rem;
  }

  .sec17 .faq-question {
    padding: 12px;
  }
}

/**************** Sectoin 17  ******************/

.sec18 {
  background-color: #222;
  color: #fff;
  padding: 60px 20px;
}

.sec18 .content-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.sec18 .logo {
  margin-bottom: 40px;
}

.sec18 .footer-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sec18 p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #aaa;
}

.sec18 .copyright {
  font-size: 1rem;
  color: #fff;
}

.sec18 .footer-links {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.sec18 .footer-link {
  color: rgb(11, 115, 164);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.sec18 .footer-link:hover {
  color: #ffd700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .sec18 {
    padding: 40px 20px;
  }

  .sec18 .logo-top {
    font-size: 2.5rem;
  }

  .sec18 .logo-bottom {
    font-size: 3.5rem;
  }

  .sec18 .footer-links {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .sec18 .logo-top {
    font-size: 2rem;
  }

  .sec18 .logo-bottom {
    font-size: 3rem;
  }

  .sec18 p {
    font-size: 0.8rem;
  }
}

/* ======================= Terms and Conditions Page ======================= */

.privacy-header {
  /* background-color: #007bff; */
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}

.privacy-header h1,
.privacy-content h2,
.privacy-content h3 {
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.privacy-header h1 {
  font-size: 1.7rem;
  color: var(--third-color);
}

.privacy-content {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.privacy-content h2 {
  font-size: 1.5rem;
  color: var(--secondary-color);
}
.privacy-content p {
  padding-bottom: 1rem;
}
.privacy-footer {
  text-align: center;
  padding: 1rem 0;
  background-color: #333;
  color: #fff;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .privacy-content {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .privacy-header h1 {
    font-size: 1.5rem;
  }

  .privacy-content {
    padding: 1rem;
  }
}
