.hero-section {
  position: relative;
  width: 100%;
  height: 95vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 80px;
}
.hero-section .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 2;
}
.hero-section .hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  width: 100%;
  padding: 0 24px;
  color: #f9f9f9;
  text-align: center;
}
.hero-section .hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.hero-section .hero-content p {
  font-size: 1.25rem;
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-section .hero-content .btn-primary {
  background-color: #ff5c00;
  color: #f9f9f9;
  transition: all 0.3s ease-in-out;
}
.hero-section .hero-content .btn-primary:hover {
  background-color: #f9f9f9;
  color: #1c4425;
}
@media screen and (max-width: 850px) {
  .hero-section {
    height: 75vh;
    padding-bottom: 50px;
  }
  .hero-section .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-section .hero-content p {
    font-size: 1rem;
    margin-bottom: 24px;
  }
}

.intro-section {
  width: 100%;
  background-color: #f1f8e7;
  padding: 100px 20px;
  overflow: hidden;
}
.intro-section .intro-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}
.intro-section .intro-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: center;
  padding: 20px;
}
.intro-section .intro-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1c4425;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.intro-section .intro-content p {
  font-size: 1.15rem;
  color: #46664e;
  line-height: 1.6;
  margin-bottom: 35px;
}
.intro-section .intro-content .btn-primary {
  padding: 14px 36px;
  font-size: 1.1rem;
  background-color: #ff5c00;
  color: #f9f9f9;
  transition: all 0.3s ease-in-out;
}
.intro-section .intro-content .btn-primary:hover {
  background-color: #1c4425;
  color: #f9f9f9;
}
.intro-section .circle-img {
  position: absolute;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.intro-section .circle-img:hover {
  transform: scale(1.05) translateY(-5px);
}
.intro-section .left-1 {
  top: -5%;
  left: 2%;
  width: 160px;
  height: 160px;
}
.intro-section .left-2 {
  bottom: 0%;
  left: 8%;
  width: 160px;
  height: 160px;
}
.intro-section .right-1 {
  top: -10%;
  right: 8%;
  width: 160px;
  height: 160px;
}
.intro-section .right-2 {
  top: 35%;
  right: 1%;
  width: 160px;
  height: 160px;
}
.intro-section .right-3 {
  bottom: -5%;
  right: 12%;
  width: 160px;
  height: 160px;
}
@media screen and (max-width: 850px) {
  .intro-section {
    padding: 60px 20px;
  }
  .intro-section .intro-container {
    min-height: auto;
  }
  .intro-section .intro-content h2 {
    font-size: 2rem;
  }
  .intro-section .intro-content p {
    font-size: 1rem;
  }
  .intro-section .circle-img {
    opacity: 0.25;
  }
  .intro-section .left-1 {
    width: 100px;
    height: 100px;
    left: -10px;
    top: 5%;
  }
  .intro-section .left-2 {
    width: 100px;
    height: 100px;
    left: 2%;
    bottom: -5%;
  }
  .intro-section .right-1 {
    width: 100px;
    height: 100px;
    right: 2%;
    top: -5%;
  }
  .intro-section .right-2 {
    display: none;
  }
  .intro-section .right-3 {
    width: 100px;
    height: 100px;
    right: -10px;
    bottom: 0%;
  }
}

.about-section {
  width: 100%;
  background-color: #1c4425;
  padding: 100px 20px;
}
.about-section .about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.about-section .about-image-left {
  flex: 1;
  max-width: 400px;
}
.about-section .about-image-left img {
  width: 100%;
  aspect-ratio: 4/5;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.about-section .about-content {
  flex: 1.5;
}
.about-section .about-content .section-subtitle {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #f9f9f9;
  margin-bottom: 12px;
}
.about-section .about-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #f9f9f9;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.about-section .about-content .main-desc {
  font-size: 1.15rem;
  color: #f1f8e7;
  line-height: 1.6;
  margin-bottom: 40px;
}
.about-section .about-content .about-features {
  display: flex;
  gap: 30px;
}
.about-section .about-content .about-features .feature-item {
  flex: 1;
}
.about-section .about-content .about-features .feature-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f9f9f9;
  margin-bottom: 10px;
}
.about-section .about-content .about-features .feature-item p {
  font-size: 1rem;
  color: #f1f8e7;
  line-height: 1.5;
}
.about-section .about-image-right {
  flex: 1;
  max-width: 400px;
}
.about-section .about-image-right img {
  width: 100%;
  aspect-ratio: 4/5;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(0);
}
@media screen and (max-width: 992px) {
  .about-section {
    padding: 60px 20px;
  }
  .about-section .about-container {
    flex-direction: column;
    gap: 40px;
  }
  .about-section .about-content {
    order: 1;
    margin-bottom: 0;
    width: 100%;
  }
  .about-section .about-content h2 {
    font-size: 2.2rem;
  }
  .about-section .about-content .about-features {
    flex-direction: column;
    gap: 20px;
  }
  .about-section .about-image-right {
    order: 2;
    width: 85%;
    max-width: 350px;
    margin: 0 auto -15% auto;
    position: relative;
    z-index: 2;
  }
  .about-section .about-image-right img {
    aspect-ratio: 4/3;
    transform: translateY(0);
    border: 8px solid #1c4425;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
  }
  .about-section .about-image-left {
    order: 3;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .about-section .about-image-left img {
    aspect-ratio: 4/3;
    border-radius: 20px;
  }
}

.process-section {
  width: 100%;
  background-color: #1c4425;
  padding: 0;
}
.process-section .process-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}
.process-section .scroll-wrapper {
  height: 400vh;
  position: relative;
}
.process-section .sticky-content {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.process-section .process-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px auto;
}
.process-section .process-header .section-subtitle {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f9f9f9;
  margin-bottom: 20px;
}
.process-section .process-header h2 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #f9f9f9;
  line-height: 1.1;
  letter-spacing: -2px;
}
.process-section .timeline-container {
  width: 100%;
  position: relative;
  padding: 0;
}
.process-section .line-bg {
  position: absolute;
  top: 16px;
  left: 31px;
  right: 31px;
  height: 4px;
  background-color: #46664e;
  z-index: 1;
}
.process-section .line-fill {
  position: absolute;
  top: 16px;
  left: 31px;
  right: 31px;
  height: 4px;
  background-color: #93d35c;
  z-index: 2;
  transform-origin: left center;
  transform: scaleX(var(--line-progress, 0));
  transition: transform 0.1s ease-out;
}
.process-section .steps-row {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 3;
  width: 100%;
}
.process-section .step-item {
  flex: 1;
  text-align: left;
  min-width: 0;
  padding: 0 15px;
  margin-right: 30px;
}
.process-section .step-item:last-child {
  margin-right: 0;
}
.process-section .step-item .station-dot {
  width: 32px;
  height: 32px;
  background-color: #46664e;
  border: 4px solid #46664e;
  border-radius: 50%;
  margin: 0 0 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.process-section .step-item .station-dot .check-icon {
  width: 18px;
  height: 18px;
  fill: #f9f9f9;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.process-section .step-item .station-dot.is-reached {
  border-color: #93d35c;
  background-color: #93d35c;
}
.process-section .step-item .station-dot.is-reached .check-icon {
  opacity: 1;
  transform: scale(1);
}
.process-section .step-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #f9f9f9;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.process-section .step-item h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #f9f9f9;
  margin-bottom: 12px;
  line-height: 1.2;
}
.process-section .step-item p {
  font-size: 1.1rem;
  color: #f1f8e7;
  line-height: 1.6;
  padding-right: 15px;
}
@media screen and (max-width: 850px) {
  .process-section .process-header {
    margin-bottom: 25px;
    padding: 0 15px;
    box-sizing: border-box;
    width: 100%;
  }
  .process-section .process-header h2 {
    font-size: 1.8rem;
    word-wrap: break-word;
  }
  .process-section .timeline-container {
    padding: 0 15px 25px 62px;
    position: relative;
    box-sizing: border-box;
    width: 100%;
  }
  .process-section .line-bg {
    top: 16px;
    bottom: 15px;
    left: 28px;
    right: auto;
    width: 4px;
    height: auto;
  }
  .process-section .line-fill {
    transform: none;
    top: 16px;
    left: 28px;
    right: auto;
    width: 4px;
    height: 0;
    transition: height 0.1s ease-out;
  }
  .process-section .steps-row {
    flex-direction: column;
    gap: 25px;
    text-align: left !important;
  }
  .process-section .step-item {
    position: relative;
    text-align: left !important;
    margin-right: 0;
    padding: 0;
    box-sizing: border-box;
  }
  .process-section .step-item .station-dot {
    position: absolute;
    left: -48px;
    top: 0;
    margin: 0 !important;
  }
  .process-section .step-item h3 {
    font-size: 1.2rem;
    word-wrap: break-word;
    margin-bottom: 8px;
  }
  .process-section .step-item p {
    font-size: 0.95rem;
    padding-right: 0;
    word-wrap: break-word;
    line-height: 1.4;
  }
}

.race-section {
  width: 100%;
  background-color: #f1f8e7;
  padding: 100px 20px;
}
.race-section .race-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.race-section .race-header {
  max-width: 700px;
  margin: 0 auto 60px auto;
}
.race-section .race-header .section-subtitle {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1c4425;
  margin-bottom: 15px;
}
.race-section .race-header h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.race-section .race-header .section-desc {
  font-size: 1.15rem;
  color: #46664e;
  line-height: 1.6;
}
.race-section .race-cards {
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
  text-align: left;
}
.race-section .race-card {
  flex: 1;
  background-color: #1c4425;
  padding: 40px;
  border-radius: 30px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.race-section .race-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.race-section .race-card .card-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f9f9f9;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 30px;
}
.race-section .race-card .card-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #f9f9f9;
}
.race-section .race-card .card-content p {
  font-size: 1rem;
  color: #f1f8e7;
  line-height: 1.6;
}
.race-section .race-footer {
  display: flex;
  justify-content: center;
}
.race-section .race-footer .btn-primary {
  padding: 18px 40px;
  font-size: 1.1rem;
  background-color: #ff5c00;
  color: #f9f9f9;
  transition: all 0.3s ease-in-out;
}
.race-section .race-footer .btn-primary:hover {
  background-color: #1c4425;
  color: #f9f9f9;
}
@media screen and (max-width: 992px) {
  .race-section {
    padding: 60px 20px;
  }
  .race-section .race-header h2 {
    font-size: 2.2rem;
  }
  .race-section .race-cards {
    flex-direction: column;
    gap: 20px;
  }
  .race-section .race-card {
    padding: 30px;
  }
  .race-section .race-card:hover {
    transform: none;
  }
}

.facility-section {
  width: 100%;
  background-color: #1c4425;
  padding: 100px 20px;
}
.facility-section .facility-container {
  max-width: 1200px;
  margin: 0 auto;
}
.facility-section .facility-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 60px;
}
.facility-section .facility-header .header-left {
  flex: 1.2;
}
.facility-section .facility-header .header-left .section-subtitle {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f9f9f9;
  margin-bottom: 15px;
}
.facility-section .facility-header .header-left h2 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #f9f9f9;
}
.facility-section .facility-header .header-right {
  flex: 1;
}
.facility-section .facility-header .header-right p {
  font-size: 1.15rem;
  color: #f9f9f9;
  line-height: 1.6;
  max-width: 500px;
}
.facility-section .facility-gallery {
  display: flex;
  gap: 25px;
}
.facility-section .facility-slider {
  display: flex;
  gap: 25px;
  width: 100%;
}
.facility-section .facility-card {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.facility-section .facility-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.facility-section .facility-card:hover {
  transform: translateY(-5px);
}
.facility-section .facility-card:hover img {
  transform: scale(1.08);
}
.facility-section .slider-dots {
  display: none;
}
@media screen and (max-width: 992px) {
  .facility-section {
    padding: 60px 20px;
  }
  .facility-section .facility-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .facility-section .facility-header h2 {
    font-size: 2.2rem !important;
  }
  .facility-section .facility-header .header-right p {
    font-size: 1.1rem;
  }
  .facility-section .facility-gallery {
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
  }
  .facility-section .facility-slider {
    display: flex;
    gap: 25px;
    width: 100%;
  }
  .facility-section .facility-slider {
    display: flex;
    gap: 16px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    touch-action: pan-y;
  }
  .facility-section .facility-card {
    flex: 0 0 100%;
    aspect-ratio: 1/1;
  }
  .facility-section .facility-card:hover {
    transform: none;
  }
  .facility-section .slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
  }
  .facility-section .slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .facility-section .slider-dots .dot.active {
    width: 24px;
    border-radius: 4px;
    background-color: #f9f9f9;
  }
}

.early-reg-section {
  width: 100%;
  background-color: #f1f8e7;
  padding: 100px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.early-reg-section .early-reg-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.early-reg-section .early-reg-header {
  margin-bottom: 70px;
}
.early-reg-section .early-reg-header .section-subtitle {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1c4425;
  margin-bottom: 15px;
}
.early-reg-section .early-reg-header h2 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  max-width: 800px;
  margin: 0 auto;
}
.early-reg-section .early-reg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 70px;
  padding: 40px;
  background-color: #1c4425;
  border-radius: 40px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.early-reg-section .reg-info-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.early-reg-section .reg-info-item .info-label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #f9f9f9;
  letter-spacing: 1px;
}
.early-reg-section .reg-info-item .info-value {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 1.4rem;
  font-weight: 800;
  color: #f9f9f9;
  line-height: 1.2;
}
.early-reg-section .reg-info-item .info-value .time-text {
  margin-right: 4px;
}
.early-reg-section .reg-info-item .info-value .time-text:last-child {
  margin-right: 0;
}
.early-reg-section .reg-info-item:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.early-reg-section .early-reg-footer .btn-primary {
  padding: 20px 50px;
  font-size: 1.2rem;
  border-radius: 100px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background-color: #ff5c00;
  color: #f9f9f9;
}
.early-reg-section .early-reg-footer .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  background-color: #1c4425;
}
@media screen and (max-width: 992px) {
  .early-reg-section .early-reg-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px;
  }
  .early-reg-section .reg-info-item:nth-child(2) {
    border-right: none;
  }
}
@media screen and (max-width: 600px) {
  .early-reg-section {
    padding: 60px 20px;
  }
  .early-reg-section .early-reg-header h2 {
    font-size: 2.2rem;
  }
  .early-reg-section .early-reg-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 20px;
  }
  .early-reg-section .reg-info-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 0;
  }
  .early-reg-section .reg-info-item:last-child {
    border-bottom: none;
  }
  .early-reg-section .early-reg-footer .btn-primary {
    width: 100%;
    text-align: center;
  }
}

.packages-section {
  width: 100%;
  background-color: #f1f8e7;
  padding: 100px 20px;
}
.packages-section .packages-container {
  max-width: 1200px;
  margin: 0 auto;
}
.packages-section .packages-header {
  text-align: center;
  margin-bottom: 60px;
}
.packages-section .packages-header .section-subtitle {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1c4425;
  margin-bottom: 15px;
}
.packages-section .packages-header h2 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -1.5px;
}
.packages-section .packages-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
}
.packages-section .package-card {
  flex: 1;
  background-color: #1c4425;
  border-radius: 40px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.packages-section .package-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}
.packages-section .package-card .card-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.packages-section .package-card .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.packages-section .package-card:hover .card-image img {
  transform: scale(1.05);
}
.packages-section .package-card .card-body {
  padding: 40px;
}
.packages-section .package-card .card-body .package-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #f9f9f9;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.packages-section .package-card .card-body h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #f9f9f9;
  margin-bottom: 15px;
  line-height: 1.2;
}
.packages-section .package-card .card-body p {
  font-size: 1.05rem;
  color: #f1f8e7;
  line-height: 1.6;
  margin-bottom: 30px;
}
.packages-section .package-card .card-body .btn-outline {
  display: inline-block;
  padding: 14px 28px;
  border: 2px solid #f9f9f9;
  color: #f9f9f9;
  text-decoration: none;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.packages-section .package-card .card-body .btn-outline:hover {
  background-color: #f9f9f9;
  color: #1c4425;
}
@media screen and (max-width: 992px) {
  .packages-section .packages-grid {
    flex-direction: column;
    gap: 30px;
  }
  .packages-section .package-card {
    max-width: 500px;
    margin: 0 auto;
  }
  .packages-section .packages-header h2 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 600px) {
  .packages-section {
    padding: 60px 20px;
  }
  .packages-section .card-body {
    padding: 30px;
  }
  .packages-section .card-body h3 {
    font-size: 1.5rem;
  }
}/*# sourceMappingURL=index.css.map */