body {
    font-family: 'Inknut Antiqua', serif;
    background: url('../img/bg3.jpg') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
}

.contact-container {
    width: 750px;
    margin: 30px auto;
    background: #DCB6BD;
    padding: 70px;
    border-radius: 25px;
    box-shadow: -10px 10px 10px rgba(150, 13, 13, 0.6);
}
.contact-container.visible {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.9s ease, opacity 0.9s ease;
  transform: translateY(20px);
}

h1 {
  text-align: center;
  margin-bottom: 0;
}

h1 + p {
  text-align: center;
  font-style: italic;
  margin-top: 0px;
}
h2 {
    text-align: center;
    font-weight: 700;
}

    .contact-grid {
      display: flex;
      gap: 25px;
    }

    .icon-grid {
      display: grid;
      grid-template-columns: repeat(2, 120px);
      gap: 20px;
    }

    .icon-grid .icon {
      background-color: #fddde1;
      border-radius: 15px;
      padding: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 4px 4px 0 rgba(0,0,0,0.2);
    }

    .icon-grid .icon img {
      width: 50px;
      height: 50px;
    }

    .info-text {
      flex: 1;
      font-size: 14px;
    }

    .info-text h4 {
      margin: 10px 0 5px;
      font-size: 16px;
      border-bottom: 1px solid #999;
      display: inline-block;
    }

    .info-text p {
      margin: 4px 0;
    }

    .info-text p b {
      display: inline-block;
      width: 80px;
    }

.subtitle {
    text-align: center;
    font-size: 14px;
    margin-bottom: 25px;
}

.my-contact,
.contact-form,
.service-table {
    background: #DDCFCF;
    padding: 40px; /* ini jarak isi ke tepi kotak */
    border-radius: 55px;
    margin-bottom: 40px; /* jarak antar kotak */
    box-shadow: 10px 10px 10px rgba(218, 87, 87, 0.6);
}


.contact-form label {
    font-size: 14px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #999;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

.contact-form button {
    background: #E8B7BB;
    border: none;
    box-shadow: 10px 10px 10px rgba(218, 87, 87, 0.6);
    padding: 10px 20px;
    color: #fff;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    display: block;
    margin: 20px auto 0 auto;
}



table {
    border-collapse: collapse;
    width: 100%;
    font-size: 14px;
}

table,
th,
td {
    border: 1px solid #999;
}

th,
td {
    padding: 10px;
    text-align: left;
}

.my-contact p {
    margin: 10px 0;
    font-size: 14px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.simple-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f0cfd3;
  color: #333;
  padding: 10px 15px;
  font-family: 'Inknut Antiqua', serif;
  font-size: 14px;
  z-index: 9999;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
