  body {
      margin: 0;
      font-family: Arial, sans-serif;
      line-height: 1.6;
    }
    /* Pink Hero Section */
    .pink-section {
      background-color: #deced0;
      padding: 60px 20px;
      text-align: center;
    }

    .pink-section h2 {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 20px;
    }

    .pink-section p {
      max-width: 800px;
      margin: 0 auto 40px;
    }

    .pink-section .row {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap
      : 40px;
    }

    .pink-section .column {
      flex: 1 1 300px;
      max-width: 400px;
    }

    .services-list {
      list-style: none;
      padding: 0;
    }

    .services-list li {
      background: #fff;
      padding: 12px;
      margin-bottom: 12px;
      font-weight: bold;
      border-radius: 5px;
      cursor: pointer;
    }

    .services-list li:nth-child(1) {
      color: #c2185b;
    }

    .services-list li:nth-child(2) {
      color: #0277bd;
    }

    .services-list li:nth-child(3) {
      color: #d50000;
    }

    .form-group {
      text-align: left;
      margin-bottom: 15px;
    }

    .form-group input {
      width: 100%;
      padding: 10px;
      border: none;
      border-radius: 4px;
      font-size: 14px;
    }

    .submit-btn {
      width: 100%;
      background-color: #1976d2;
      color: white;
      border: none;
      padding: 12px;
      font-size: 16px;
      border-radius: 4px;
      cursor: pointer;
    }

    .submit-btn:hover {
      background-color: #0d47a1;
    }

    /* White Content Section */
    .info-section {
      background-color: #ffffff;
      padding: 60px 20px;
      text-align: center;
    }

    .info-section h2, .info-section h3, .info-section h4 {
      margin-top: 30px;
    }

    .info-section p, .info-section li {
      max-width: 900px;
      margin: 0 auto;
      text-align: justify;
    }

    .info-section ol {
      text-align: left;
      max-width: 800px;
      margin: 20px auto;
    }

    .info-section strong {
      font-weight: 600;
    }

    /* Final Service Row */
    .service-row {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 40px;
      margin-top: 40px;
    }

    .service-box {
      flex: 1 1 300px;
      max-width: 400px;
    }

    .side-box {
      background: #f9f6f7;
      border: 1px solid #ccc;
      padding: 20px;
      border-radius: 10px;
      text-align: left;
    }

    .side-box strong {
      display: block;
      margin-top: 10px;
    }

    .side-box ul {
      padding-left: 20px;
    }

    .side-box span {
      color: #d81b60;
      font-weight: bold;
    }
    /* Responsive */
    @media (max-width: 768px) {
      .pink-section .row, .service-row {
        flex-direction: column;
        align-items: center;
      }

      .pink-section .column, .service-box {
        max-width: 90%;
      }
    } 
 