/* ===================
 intro section
 =================== */

.web-design-intro {
  text-align: center;
  padding: 60px 20px;
  /* max-width: auto; */
  margin: 0 auto;
  background-color: white;
}

.tagline {
  color: #FFA500; /* orange */
  font-size: 18px;
  margin-bottom: 10px;
}

.main-heading {
  color: #454545;
  font-size: 30px;
  margin: 10px 0 20px;
}

.description {
  color: #7C7C7C;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.cta-button {
  background-color: #FF5886;
  color: #F1F1F1;
  font-size: 20px;
  padding: 16px 40px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 0 #ff588655;
}

.cta-button:hover {
  background-color: #e64c77;
  box-shadow: 0 6px 15px rgba(255, 88, 134, 0.5);
}

/* Mobile view */
@media (max-width: 768px) {
  .main-heading {
    font-size: 26px;
  }

  .description {
    font-size: 16px;
  }

  .cta-button {
    font-size: 18px;
    padding: 14px 32px;
  }
}



/* =======================
     approach section
=======================*/

.approach-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px;
  background: #ffffff;
  text-align: center;
}

.approach-header h2,
.approach-footer h2 {
  font-size: 30px;
  color: #454545;
  font-weight: 600;
  margin-bottom: 10px;
}

.approach-header p,
.approach-footer p {
  font-size: 18px;
  color: #7C7C7C;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px;
}

.approach-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}

.approach-card {
  border: 1px solid #454545;
  border-radius: 12px;
  padding: 24px;
  text-align: left;
  width: 100%;
  max-width: 400px;
  min-height: 180px;
  box-sizing: border-box;
}

.approach-card img {
  width: 50px;
  padding-bottom: 5px;
}

.approach-card h3 {
  font-size: 24px;
  color: #000000;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 10px;
}

.approach-card p {
  font-size: 18px;
  color: #7C7C7C;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .approach-section {
    padding: 40px 16px;
  }

  .approach-header h2,
  .approach-footer h2 {
    font-size: 26px;
  }

  .approach-header p,
  .approach-footer p {
    font-size: 16px;
  }

  .approach-card h3 {
    font-size: 20px;
  }

  .approach-card p {
    font-size: 16px;
  }

  .approach-cards {
    gap: 20px;
  }
}

