/* Global Styles */
:root {
  --primary-color: #5D8736;
  --secondary-color: #809D3C;
  --accent-color: #A9C46C;
  --light-color: #f8f9fa;
  --dark-color: #1a2639;
  --white: #ffffff;
  --black: #333;
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  --gradient-primary: linear-gradient(135deg, #5D8736, #809D3C);
  --gradient-accent: linear-gradient(135deg, #809D3C, #A9C46C);
  --card-border-radius: 16px;
  --text-color: #333;
  --border-color: rgba(0,0,0,0.1);
}

body {
  font-family: 'Playfair Display', serif;
  color: var(--text-color);
  overflow-x: hidden;
  background-color: var(--white);
}

/* Reusable Section Components */
.section-subtitle {
  display: inline-block;
  background-color: rgba(93, 135, 54, 0.1);
  color: var(--primary-color);
  padding: 6px 15px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 30px;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-color);
  position: relative;
}

.section-separator {
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 20px 0 30px;
  border-radius: 5px;
}

.section-header .section-separator {
  margin: 20px auto 30px;
}

.section-description {
  font-size: 18px;
  color: var(--text-color);
  max-width: 800px;
  margin: 0 auto 50px;
}

/* Hero Section - New Design */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-bg-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  color: #fff;
  padding: 20px 0;
}

.hero-badge {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease forwards;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
  line-height: 1.2;
}

.hero-title .text-accent {
  color: #4ecca3;
  position: relative;
  display: inline-block;
}

.hero-title .text-accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 8px;
  background-color: rgba(78, 204, 163, 0.3);
  z-index: -1;
}

.hero-description {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.7;
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  animation: fadeInUp 1.2s ease 0.6s forwards;
  opacity: 0;
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #4ecca3;
  line-height: 1;
}

.hero-stat-label {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-color);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1.4s ease 0.8s forwards;
  opacity: 0;
}

.hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transform: translateX(-100%) skewX(-15deg);
  transition: all 0.5s ease;
}

.hero-btn:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
  color: white;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.hero-btn:hover::before {
  transform: translateX(100%) skewX(-15deg);
}

.hero-btn i {
  transition: transform 0.3s ease;
}

.hero-btn:hover i {
  transform: translateX(5px);
}

.hero-image-container {
  position: relative;
}

.hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  animation: fadeInZoom 1.2s ease 0.3s forwards;
  opacity: 0;
}

.hero-image-accent {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  border: 4px solid var(--primary-color);
  border-radius: 20px;
  z-index: -1;
}

.hero-floating-badge {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: white;
  color: var(--primary-color);
  padding: 15px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  animation: float 3s ease-in-out infinite;
}

.hero-floating-badge i {
  color: gold;
  font-size: 18px;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  opacity: 0.8;
  z-index: 10;
  animation: fadeInUp 1s ease 1s forwards;
  opacity: 0;
}

.hero-mouse {
  width: 30px;
  height: 50px;
  border: 2px solid white;
  border-radius: 20px;
  position: relative;
  margin-bottom: 10px;
}

.hero-mouse-wheel {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s ease infinite;
}

.hero-scroll-text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-shape-1, .hero-shape-2, .hero-shape-3 {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.hero-shape-1 {
  width: 300px;
  height: 300px;
  background: rgba(9, 93, 64, 0.1);
  bottom: -150px;
  right: -150px;
}

.hero-shape-2 {
  width: 200px;
  height: 200px;
  background: rgba(9, 93, 64, 0.1);
  top: -100px;
  right: 20%;
}

.hero-shape-3 {
  width: 100px;
  height: 100px;
  background: rgba(9, 93, 64, 0.1);
  top: 40%;
  left: -50px;
}

/* Intro Section - New Design */
.intro-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background-color: #f9f9f9;
}

.intro-wrapper {
  position: relative;
}

.intro-image-group {
  position: relative;
  height: 100%;
}

.intro-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.intro-image-main {
  position: relative;
  z-index: 2;
}

.intro-image-accent {
  position: absolute;
  bottom: -70px;
  right: -70px;
  width: 60%;
  z-index: 1;
  border: 10px solid white;
}

.intro-shape {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 15px solid var(--primary-color);
  border-radius: 50%;
  opacity: 0.1;
  top: -40px;
  left: -40px;
  z-index: 0;
}

.intro-badge {
  position: absolute;
  top: 30px;
  right: 0;
  background: var(--primary-color);
  color: white;
  padding: 15px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  z-index: 3;
}

.intro-content {
  padding: 20px 0 20px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro-text {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #666;
}

.intro-text .highlight {
  color: var(--primary-color);
  font-weight: 600;
}

.intro-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.intro-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.intro-feature i {
  color: var(--primary-color);
  font-size: 16px;
}

.intro-shape-1, .intro-shape-2 {
  position: absolute;
  z-index: 0;
}

.intro-shape-1 {
  width: 200px;
  height: 200px;
  background: rgba(9, 93, 64, 0.05);
  border-radius: 50%;
  top: -100px;
  right: 10%;
}

.intro-shape-2 {
  width: 300px;
  height: 300px;
  background: rgba(9, 93, 64, 0.05);
  border-radius: 50%;
  bottom: -150px;
  left: 5%;
}

/* Services Section - New Design */
.services-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background-color: white;
}

.services-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.service-card {
  background-color: #f9f9f9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-card-inner {
  display: flex;
  gap: 30px;
  padding: 40px;
}

.service-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  color: white;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(10deg);
}

.service-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  top: -100%;
  left: -100%;
  transition: all 0.5s ease;
  transform: rotate(45deg);
}

.service-card:hover .service-icon::after {
  top: 100%;
  left: 100%;
}

.service-content {
  flex: 1;
}

.service-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.service-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(9, 93, 64, 0.08);
  padding: 8px 15px;
  border-radius: 30px;
}

.service-feature i {
  color: var(--primary-color);
  font-size: 12px;
}

.service-feature span {
  font-size: 14px;
  color: var(--dark-color);
}

.service-shape-1, .service-shape-2 {
  position: absolute;
  z-index: 0;
}

.service-shape-1 {
  width: 200px;
  height: 200px;
  background: rgba(9, 93, 64, 0.05);
  border-radius: 50%;
  top: 100px;
  left: -100px;
}

.service-shape-2 {
  width: 300px;
  height: 300px;
  background: rgba(9, 93, 64, 0.05);
  border-radius: 50%;
  bottom: 50px;
  right: -150px;
}

/* Features Section - New Design */
.features-section {
  padding: 120px 0;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.feature-item {
  background-color: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(0,0,0,0.05);
  z-index: 1;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  margin-bottom: 25px;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 10px 20px rgba(9, 93, 64, 0.2);
}

.feature-item:hover .feature-icon {
  transform: rotateY(180deg);
  background: var(--gradient-accent);
}

.feature-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.feature-content p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

.feature-number {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 60px;
  font-weight: 900;
  color: rgba(9, 93, 64, 0.08);
  transition: all 0.4s ease;
}

.feature-item:hover .feature-number {
  color: rgba(9, 93, 64, 0.15);
  transform: scale(1.2);
}

.features-shape-1, .features-shape-2 {
  position: absolute;
  z-index: 0;
}

.features-shape-1 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(9, 93, 64, 0.05);
  top: -150px;
  right: -150px;
}

.features-shape-2 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(9, 93, 64, 0.05);
  bottom: -100px;
  left: -100px;
}

/* CTA Section - New Design */
.cta-section {
  position: relative;
  background: var(--gradient-primary);
  padding: 80px 0;
  color: white;
  overflow: hidden;
}

.cta-wave-top, .cta-wave-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}

.cta-wave-top {
  top: 0;
}

.cta-wave-bottom {
  bottom: 0;
}

.cta-wave-top svg, .cta-wave-bottom svg {
  width: 100%;
  height: 70px;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-content {
  padding-right: 30px;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn.primary {
  background-color: white;
  color: var(--primary-color);
}

.cta-btn.secondary {
  background-color: rgba(255,255,255,0.2);
  color: white;
}

.cta-btn:hover {
  transform: translateY(-5px);
}

.cta-btn.primary:hover {
  background-color: var(--light-color);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.cta-btn.secondary:hover {
  background-color: rgba(255,255,255,0.3);
}

.cta-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.cta-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
}

.cta-badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-badge-inner span {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.cta-badge-inner small {
  font-size: 12px;
  color: #666;
}

.cta-shape-1, .cta-shape-2 {
  position: absolute;
  z-index: 1;
}

.cta-shape-1 {
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  top: -100px;
  left: 10%;
}

.cta-shape-2 {
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  bottom: -150px;
  right: 10%;
}

/* Complimentary Services Section */
.complimentary-section {
  padding: 80px 0;
  background-color: white;
  position: relative;
}

.complimentary-item {
  text-align: center;
  padding: 30px 20px;
  background-color: #f9f9f9;
  border-radius: 15px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.complimentary-item:hover {
  transform: translateY(-5px);
  background-color: white;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.complimentary-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.complimentary-item:hover .complimentary-icon {
  transform: scale(1.1);
  background: var(--gradient-accent);
}

.complimentary-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.complimentary-item p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Nearby Attractions Section */
.attractions-section {
  padding: 80px 0;
  background-color: #f9f9f9;
  position: relative;
}

.attraction-card {
  background-color: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.attraction-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border-color: var(--primary-color);
}

.attraction-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.attraction-card:hover::before {
  transform: scaleX(1);
}

.attraction-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.attraction-card:hover .attraction-icon {
  transform: rotateY(180deg);
  background: var(--gradient-accent);
}

.attraction-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.attraction-card p {
  color: #666;
  line-height: 1.7;
  margin: 0;
  font-size: 15px;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInZoom {
  from {
    opacity: 0;
    transform: perspective(1000px) rotateY(-5deg) scale(0.9);
  }
  to {
    opacity: 1;
    transform: perspective(1000px) rotateY(-5deg) scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes scrollWheel {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(255,255,255,0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255,255,255,0);
  }
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-image {
    transform: perspective(1000px) rotateY(0);
  }
}

@media (max-width: 991px) {
  .hero-section {
    height: auto;
    min-height: 500px;
    padding: 100px 0 50px;
  }
  
  .hero-container {
    align-items: center;
    text-align: center;
    padding-top: 50px;
  }
  
  .hero-content {
    margin-bottom: 50px;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-btn {
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .intro-image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 50%;
  }
  
  .service-card-inner {
    flex-direction: column;
    padding: 30px;
    align-items: flex-start;
  }
  
  .feature-item {
    margin-bottom: 30px;
  }
  
  .cta-content {
    text-align: center;
    padding: 0;
    margin-bottom: 40px;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 80px 0 50px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .hero-stat-number {
    font-size: 2rem;
  }
  
  .intro-section, .services-section, .features-section {
    padding: 80px 0;
  }
  
  .intro-image-accent {
    display: none;
  }
  
  .intro-features {
    grid-template-columns: 1fr;
  }
  
  .service-card-inner {
    padding: 25px;
  }
  
  .cta-content h2 {
    font-size: 32px;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 575px) {
  .hero-section {
    padding: 60px 0 40px;
  }
  
  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .hero-description {
    font-size: 15px;
    margin-bottom: 30px;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .hero-stat-item {
    width: 45%;
  }
  
  .hero-btn {
    width: 100%;
    justify-content: center;
  }
  
  .intro-section, .services-section, .features-section {
    padding: 60px 0;
  }
  
  .service-card {
    padding: 20px;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .service-content h3 {
    font-size: 20px;
  }
  
  .feature-item {
    padding: 20px;
  }
  
  .cta-section {
    padding: 60px 0;
  }
  
  .cta-content h2 {
    font-size: 28px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-btn {
    width: 100%;
    justify-content: center;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
}
