/* ====== ABOUT PAGE ====== */

/* --- Hero Section (video + text) --- */
.hero-container {
  background: linear-gradient(to left, #FEF4EF 0%, #FFFAF8 100%);
  padding-top: 120px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: 480px;
}

.hero-text {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  max-width: 50%;
}

.hero-subtitle {
  display: inline-block;
  background-color: rgba(180, 103, 70, 0.1);
  color: #b46746;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 54px;
  font-weight: 700;
  color: #8b4f4f;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-desc {
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: #4a2d25;
  margin-bottom: 30px;
  line-height: 1.8;
  max-width: 500px;
}

.hero-media-container {
  position: absolute;
  top: 0;
  right: -24px;
  bottom: 0;
  width: 50vw;
  overflow: hidden;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-top-left-radius: 200px;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(255,250,248,0.3), transparent 40%);
  z-index: 1;
  border-top-left-radius: 200px;
  pointer-events: none;
}

/* Decorative circles */
.hero-decoration {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.deco-1 {
  top: -30px;
  left: 10%;
  width: 140px;
  height: 140px;
  background-color: rgba(194, 125, 96, 0.15);
}

.deco-2 {
  bottom: -40px;
  left: 35%;
  width: 80px;
  height: 80px;
  background-color: rgba(139, 79, 79, 0.1);
}

.deco-3 {
  top: 20%;
  right: 40%;
  width: 60px;
  height: 60px;
  background-color: rgba(139, 79, 79, 0.1);
}

/* --- Quote below hero --- */
.quote-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 40px 40px;
  text-align: center;
  position: relative;
}

.quote-marks {
  font-size: 120px;
  line-height: 0;
  position: absolute;
  top: 20px;
  left: 0;
  color: rgba(180, 103, 70, 0.1);
  font-family: Georgia, serif;
}

.quote-text {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 20px;
  line-height: 1.8;
  color: #8b4f4f;
  font-style: italic;
  position: relative;
  z-index: 2;
}

.quote-author {
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  margin-top: 20px;
  font-weight: 600;
  color: #b46746;
  font-size: 16px;
}

/* --- Quote Section --- */
.about-quote {
  text-align: center;
  padding: 60px 24px;
  max-width: 700px;
  margin: 0 auto;
}

.about-quote blockquote {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 22px;
  font-style: italic;
  color: #8b4f4f;
  line-height: 1.6;
  margin: 0;
  padding: 0 20px;
  position: relative;
}

.about-quote blockquote::before {
  content: '\201C';
  font-size: 60px;
  color: #f0ddd0;
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
}

.about-quote cite {
  display: block;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #b46746;
  font-style: normal;
  margin-top: 16px;
}

/* ============================================
   ABOUT SECTION (intro + 4-feature grid)
   ============================================ */

.about-container {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.about-box {
  background: linear-gradient(to left, #FEF4EF 0%, #FFFAF8 100%);
  padding: 60px;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 15px 30px rgba(180, 103, 70, 0.1);
  overflow: hidden;
}

.about-content {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.about-text {
  margin-bottom: 30px;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: #4a2d25;
  text-align: center;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.feature-item {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  padding: 25px 15px;
  box-shadow: 0 10px 20px rgba(180, 103, 70, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0ddd0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(180, 103, 70, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 15px;
  overflow: hidden;
  background: #FEF4EF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(180, 103, 70, 0.15);
}

.feature-icon span {
  font-size: 28px;
  color: #b46746;
}

.feature-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-content h3 {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 18px;
  color: #8b4f4f;
  margin-bottom: 10px;
  font-weight: 600;
  text-align: center;
}

.feature-content p {
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #4a2d25;
  line-height: 1.6;
  text-align: center;
}

/* About decorations */
.about-decoration {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
}

.about-deco-1 {
  top: -40px;
  right: 5%;
  width: 150px;
  height: 150px;
  background-color: rgba(194, 125, 96, 0.08);
}

.about-deco-2 {
  bottom: -50px;
  left: 8%;
  width: 100px;
  height: 100px;
  background-color: rgba(139, 79, 79, 0.08);
}

.about-deco-3 {
  top: 30%;
  left: -30px;
  width: 80px;
  height: 80px;
  background-color: rgba(139, 79, 79, 0.05);
}

/* ============================================
   JOURNEY SECTION (from live site)
   ============================================ */

.journey-container {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.journey-box {
  background: linear-gradient(to left, #FEF4EF 0%, #FFFAF8 100%);
  padding: 60px;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 15px 30px rgba(180, 103, 70, 0.1);
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 38px;
  font-weight: 400;
  color: #8b4f4f;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #b46746;
  border-radius: 3px;
}

.section-subtitle {
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  color: #4a2d25;
  font-size: 18px;
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.journey-steps {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* Timeline Line */
.journey-steps::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom,
    rgba(180, 103, 70, 0.1),
    rgba(180, 103, 70, 0.4),
    rgba(180, 103, 70, 0.1));
  transform: translateX(-50%);
  z-index: 0;
}

.journey-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
  position: relative;
  align-items: center;
}

/* Circle marker */
.journey-step::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border: 3px solid #b46746;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  box-shadow: 0 0 0 5px rgba(180, 103, 70, 0.08);
}

/* Polaroid Picture Styling */
.polaroid-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.polaroid {
  background: #ffffff;
  padding: 15px 15px 50px 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: transform 0.3s ease;
  max-width: 280px;
  width: 100%;
}

.polaroid:hover {
  transform: scale(1.05);
}

/* Different tilts for each polaroid */
.journey-step:nth-child(1) .polaroid { transform: rotate(-3deg); }
.journey-step:nth-child(2) .polaroid { transform: rotate(4deg); }
.journey-step:nth-child(3) .polaroid { transform: rotate(-2deg); }
.journey-step:nth-child(4) .polaroid { transform: rotate(3deg); }

.journey-step:nth-child(1) .polaroid:hover { transform: rotate(-3deg) scale(1.05); }
.journey-step:nth-child(2) .polaroid:hover { transform: rotate(4deg) scale(1.05); }
.journey-step:nth-child(3) .polaroid:hover { transform: rotate(-2deg) scale(1.05); }
.journey-step:nth-child(4) .polaroid:hover { transform: rotate(3deg) scale(1.05); }

.polaroid-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.polaroid-caption {
  position: absolute;
  bottom: 10px;
  left: 15px;
  right: 15px;
  text-align: center;
  font-size: 14px;
  color: #666;
  font-style: italic;
  font-family: 'Courier New', monospace;
}

/* Step content card */
.step-content {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(180, 103, 70, 0.05);
  border: 1px solid #f0ddd0;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(180, 103, 70, 0.1);
}

.step-title {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 22px;
  color: #8b4f4f;
  margin-bottom: 12px;
  font-weight: 600;
}

.step-text {
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #4a2d25;
  line-height: 1.8;
}

.step-date {
  display: inline-block;
  position: absolute;
  top: -13px;
  background-color: #b46746;
  color: #fff;
  padding: 5px 15px;
  border-radius: 50px;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(180, 103, 70, 0.2);
}

.journey-step:nth-child(odd) .step-date { right: 20px; }
.journey-step:nth-child(even) .step-date { left: 20px; }

/* Decorative elements */
.journey-decoration {
  position: absolute;
  z-index: 0;
}

.journey-deco-1 {
  top: -40px;
  right: 5%;
  width: 150px;
  height: 150px;
  background-color: rgba(194, 125, 96, 0.08);
  border-radius: 50%;
}

.journey-deco-2 {
  bottom: -50px;
  left: 8%;
  width: 100px;
  height: 100px;
  background-color: rgba(139, 79, 79, 0.08);
  border-radius: 50%;
}

/* Conclusion */
.conclusion {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(180, 103, 70, 0.05);
  border: 1px solid #f0ddd0;
  max-width: 800px;
  margin: 60px auto 0;
  text-align: center;
  position: relative;
}

.conclusion-text {
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: #4a2d25;
  line-height: 1.8;
  margin-bottom: 20px;
}

.conclusion-text:last-child {
  margin-bottom: 0;
}

.conclusion-text strong {
  color: #b46746;
}

/* ============================================
   SERVICE CARDS (from live site)
   ============================================ */

.services-section {
  max-width: 1000px;
  margin: 40px auto 0;
}

.services-header {
  text-align: center;
  margin-bottom: 30px;
}

.services-title {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  color: #8b4f4f;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.services-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: #b46746;
  border-radius: 2px;
}

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 25px 15px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(180, 103, 70, 0.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  z-index: 10;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(180, 103, 70, 0.08), rgba(226, 201, 160, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.service-card::after {
  display: none;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 30px rgba(180, 103, 70, 0.15);
}

.service-card:hover::before { opacity: 1; }

.service-icon-container {
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(180, 103, 70, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  text-decoration: none;
}

.service-icon-container::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  z-index: -1;
}

.service-icon {
  font-size: 36px;
  color: #b37c27;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  height: 40px;
  width: 40px;
  position: relative;
  transform-origin: center center;
  line-height: 1;
}

.service-icon svg {
  color: #b37c27;
  stroke: #b37c27;
  transform-origin: center center;
}

.service-card:hover .service-icon-container {
  transform: scale(1.1);
  background: rgba(180, 103, 70, 0.15);
}

.service-card:hover .service-icon,
.service-card:hover .service-icon svg {
  color: #8b4f4f;
  stroke: #8b4f4f;
  animation: spinOnce 0.8s ease-in-out forwards;
}

@keyframes spinOnce {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.service-title {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 18px;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: #4a2d25;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  text-align: center;
  margin-bottom: 10px;
}
.service-title::after {
  display: none;
}

.service-description {
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #5a5a5a;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 15px;
}

.service-link {
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 15px;
  color: #b46746;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  display: inline-block;
  margin-top: auto;
  padding-top: 10px;
}

.service-card:hover .service-title { color: #8b4f4f; }
.service-card:hover .service-link { color: #8b4f4f; transform: translateX(3px); }

/* Floating Animation */
@keyframes floatCard {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

#tarot-card { animation: floatCard 10s infinite ease-in-out; }
#yoga-card { animation: floatCard 10s infinite ease-in-out 0.5s; }
#sound-card { animation: floatCard 10s infinite ease-in-out 1s; }
#light-card { animation: floatCard 10s infinite ease-in-out 1.5s; }
.service-card:hover { animation-play-state: paused; }

/* --- CTA --- */
.about-cta {
  text-align: center;
  padding: 70px 24px;
}

.about-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.about-cta h2 {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  color: #8b4f4f;
  margin: 0 0 14px;
}

.about-cta p {
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #5a4a40;
  line-height: 1.65;
  margin: 0 0 28px;
}

.about-cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #b46746, #8b4f4f);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.about-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(180, 103, 70, 0.3);
  color: white;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
  .hero-content {
    min-height: auto;
  }

  .hero-text {
    max-width: 100%;
    padding: 40px 0;
    text-align: center;
  }

  .hero-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-media-container {
    position: relative;
    width: 100%;
    height: 400px;
    right: auto;
  }

  .hero-video-wrapper {
    border-top-left-radius: 0;
  }

  .hero-media-overlay {
    border-top-left-radius: 0;
    background: linear-gradient(to bottom, rgba(255,250,248,0.15), transparent);
  }

  .about-box {
    padding: 40px 30px;
  }

  .about-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .journey-box {
    padding: 40px 30px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 17px;
  }

  .service-cards-grid {
    gap: 15px;
  }

  .service-icon-container {
    height: 70px;
    width: 70px;
  }

  .service-icon {
    font-size: 32px;
  }

  .service-title {
    font-size: 16px;
  }

  .services-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .journey-steps::before {
    left: 30px;
  }

  .journey-step {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 60px;
  }

  .journey-step .step-content {
    order: 1;
  }

  .journey-step .polaroid-container {
    order: 2;
  }

  .journey-step::after {
    left: 30px;
    top: 30px;
  }

  .journey-step:nth-child(even) {
    padding-left: 60px;
  }

  .step-date {
    top: -13px;
    left: 20px !important;
    right: auto !important;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .service-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 500px;
  }

  .polaroid {
    max-width: 220px;
    padding: 12px 12px 40px 12px;
  }

  .polaroid-image {
    height: 160px;
  }

  .polaroid-caption {
    font-size: 12px;
    bottom: 8px;
  }

  /* Reset rotations on mobile */
  .journey-step:nth-child(1) .polaroid,
  .journey-step:nth-child(2) .polaroid,
  .journey-step:nth-child(3) .polaroid,
  .journey-step:nth-child(4) .polaroid {
    transform: rotate(0deg);
  }

  .journey-step:nth-child(1) .polaroid:hover,
  .journey-step:nth-child(2) .polaroid:hover,
  .journey-step:nth-child(3) .polaroid:hover,
  .journey-step:nth-child(4) .polaroid:hover {
    transform: rotate(0deg) scale(1.05);
  }
}

@media (max-width: 600px) {
  .about-cta {
    padding: 50px 20px;
  }

  .about-features {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    gap: 20px;
  }

  .about-box {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-text {
    padding: 30px 20px;
  }

  .hero-media-container {
    height: 300px;
  }

  .quote-container {
    padding: 0 20px;
  }

  .quote-text {
    font-size: 18px;
  }

@media (max-width: 576px) {
  .step-content {
    padding: 25px 20px;
  }

  .step-title {
    font-size: 20px;
  }

  .step-text {
    font-size: 15px;
  }

  .conclusion {
    padding: 25px 20px;
  }

  .conclusion-text {
    font-size: 15px;
  }

  .service-cards-grid {
    gap: 15px;
  }

  .service-card {
    padding: 20px 10px;
  }

  .service-icon-container {
    height: 60px;
    width: 60px;
    margin-bottom: 12px;
  }

  .service-icon {
    font-size: 28px;
  }

  .service-title {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .service-description {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .service-link {
    font-size: 14px;
  }

  .services-title {
    font-size: 22px;
  }
}
