/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===== CSS VARIABLES ===== */
:root {
  --pink: #93C5E8;
  --pink-deep: #2B7DC8;
  --blue: #A8D8EA;
  --blue-deep: #4A90C4;
  --yellow: #FFE066;
  --yellow-deep: #F9A825;
  --purple: #C3B1E1;
  --white: #ffffff;
  --gray: #f8f9fa;
  --dark: #2d2d2d;
  --text: #555;
  --radius: 16px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.07);
  --transition: 0.3s ease;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink-deep), #1a5fa8);
  color: #fff;
  box-shadow: 0 4px 15px rgba(43, 125, 200, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(43, 125, 200, 0.5);
}

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: var(--pink-deep);
}

.btn-soft {
  background: var(--gray);
  color: var(--dark);
  border: 2px solid #eee;
}

.btn-soft:hover {
  background: var(--pink);
  border-color: var(--pink);
  transform: translateY(-2px);
}

.btn-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-wa:hover {
  background: #20b958;
  transform: translateY(-3px);
}

.w-full {
  width: 100%;
  justify-content: center;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  color: var(--dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.section-sub {
  color: var(--text);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  background: transparent;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: #fff;
}

.navbar.scrolled .nav-logo {
  color: var(--dark);
}

.logo-accent {
  color: var(--pink-deep);
}

.logo-icon {
  font-size: 1.5rem;
}

.logo-icon-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

.logo-icon-img--footer {
  border-color: rgba(255, 255, 255, 0.4);
}

.navbar.scrolled .logo-icon-img {
  border-color: var(--pink-deep);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 14px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  transition: all var(--transition);
}

.navbar.scrolled .nav-link {
  color: var(--dark);
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.2);
}

.navbar.scrolled .nav-link:hover {
  background: var(--gray);
}

.nav-cta {
  background: var(--pink-deep);
  color: #fff !important;
}

.nav-cta:hover {
  background: var(--blue-deep) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all var(--transition);
}

.navbar.scrolled .nav-toggle span {
  background: var(--dark);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(43, 125, 200, 0.80) 0%, rgba(26, 95, 168, 0.70) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
  padding: 100px 0 80px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.highlight {
  color: var(--yellow);
}

.hero-sub {
  font-size: 1.1rem;
  opacity: 0.92;
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 580px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 60px;
}

/* ===== ABOUT ===== */
.about {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center center;
}

.about-badge-float {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 22px;
  box-shadow: var(--shadow);
  font-weight: 700;
  font-size: 1.1rem;
}

.about-desc {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 32px;
  font-size: 1.02rem;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--gray);
  border-radius: var(--radius);
  padding: 20px;
  border-left: 4px solid var(--pink-deep);
  transition: all var(--transition);
}

.feature-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.feature-text h4 {
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dark);
}

.feature-text p {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== SERVICES ===== */
.services {
  background: var(--gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--pink);
}

.service-card.featured {
  background: linear-gradient(135deg, var(--pink-deep), var(--blue-deep));
  color: #fff;
  border-color: transparent;
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured li {
  color: #fff;
}

.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.service-card p {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.service-list {
  text-align: left;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-list li {
  font-size: 0.9rem;
  color: var(--text);
}

.service-card.featured .service-list li {
  color: rgba(255, 255, 255, 0.9);
}

/* ===== PRICING ===== */
.pricing {
  background: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pricing-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.pricing-card.featured {
  border-color: var(--blue-deep);
  box-shadow: 0 8px 40px rgba(74, 144, 196, 0.2);
  transform: scale(1.03);
}

.pricing-header {
  padding: 32px 24px;
  text-align: center;
}

.pricing-header.pink {
  background: linear-gradient(135deg, var(--pink), #c8eaf5);
}

.pricing-header.blue {
  background: linear-gradient(135deg, var(--blue), #c8eaf5);
}

.pricing-header.yellow {
  background: linear-gradient(135deg, var(--yellow), #fff0b3);
}

.pricing-icon {
  font-size: 3rem;
  margin-bottom: 10px;
}

.pricing-header h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 4px;
  color: var(--dark);
}

.pricing-header p {
  color: var(--text);
  font-size: 0.9rem;
}

.pricing-list {
  padding: 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pricing-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed #eee;
  font-size: 0.95rem;
}

.pricing-list li:last-child {
  border-bottom: none;
}

.pricing-list .price {
  font-weight: 700;
  color: var(--pink-deep);
}

.pricing-card .btn {
  margin: 0 24px 24px;
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--gray);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43, 125, 200, 0.85), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: linear-gradient(135deg, #f0f7ff, #e6f3ff);
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.testi-stars {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.testi-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
  margin-bottom: 28px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testi-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--pink);
}

.testi-author strong {
  display: block;
  font-weight: 700;
  color: var(--dark);
}

.testi-author span {
  font-size: 0.85rem;
  color: var(--text);
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--pink-deep);
  background: #fff;
  color: var(--pink-deep);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-btn:hover {
  background: var(--pink-deep);
  color: #fff;
}

.testi-dots {
  display: flex;
  gap: 8px;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all var(--transition);
}

.testi-dot.active {
  background: var(--pink-deep);
  width: 28px;
  border-radius: 5px;
}

/* ===== BOOKING ===== */
.booking {
  background: var(--gray);
}

.booking-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.booking-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
  font-size: 0.95rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #eee;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  transition: all var(--transition);
  background: #fafafa;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--pink-deep);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(43, 125, 200, 0.1);
}

.form-group input.error,
.form-group select.error {
  border-color: #ff4757;
}

.form-error {
  display: block;
  color: #ff4757;
  font-size: 0.82rem;
  margin-top: 4px;
  min-height: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.booking-success {
  display: none;
  background: #fff;
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow);
  text-align: center;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

.booking-success h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--dark);
}

.booking-success p {
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.7;
}

.booking-success .btn {
  margin: 6px auto;
  max-width: 280px;
  width: 100%;
}

/* ===== CONTACT ===== */
.contact {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.contact-card {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item h4 {
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dark);
}

.contact-item p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
  color: rgba(255, 255, 255, 0.8);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-btn {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition);
}

.social-btn:hover {
  background: var(--pink-deep);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 18px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--pink);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== FLOATING BUTTONS ===== */
.wa-float {
  position: fixed;
  bottom: 156px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: all var(--transition);
}

.wa-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.tiktok-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #010101;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: all var(--transition);
}

.tiktok-float svg {
  width: 26px;
  height: 26px;
  color: #fff;
}

.tiktok-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  background: #1a1a1a;
}

.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 46px;
  height: 46px;
  background: var(--pink-deep);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
}

.scroll-top.show {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--blue-deep);
  transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-badge-float {
    right: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .container {
    padding: 0 28px;
  }

  .hero-content {
    padding-left: 28px;
    padding-right: 28px;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: #fff;
    padding: 80px 24px 24px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    gap: 12px;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-link {
    color: var(--dark) !important;
    padding: 18px 20px;
    border-radius: 12px;
  }

  .nav-link:hover {
    background: var(--gray) !important;
  }

  .nav-cta {
    padding: 12px 20px !important;
    border-radius: 12px !important;
    font-size: 0.9rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }

  .nav-overlay.show {
    display: block;
  }

  .services-grid,
  .pricing-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-form {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-img {
    height: 380px;
    object-position: center center;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.7rem;
  }
}