.contacts-white {
  background: #fff;
  padding: 30px 0;
}

.contacts-gradient {
  background: linear-gradient(135deg, #eaf8ff 0%, #ffffff 100%);
  padding: 60px 0;
}

.contacts-center {
  text-align: center;
  margin-bottom: 40px;
}

.contacts-hr {
  font-size: 1.6rem;
  font-weight: 700;
  color: #003f6d;
  margin: 0;
}

.section-line {
    border: none;
    border-top: 1px solid #ccc;
    margin: 10px auto 20px;
    width: 90%;
}


.contacts-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.contacts-card {
  background: #fff;
  border-left: 4px solid #005b96;
  border-radius: 8px;
  padding: 20px 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.contacts-card h3 {
  color: #003f6d;
  margin-bottom: 10px;
  font-weight: 600;
}

.contacts-card p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

.contacts-card a {
  color: #005b96;
  text-decoration: none;
  word-break: break-word;
  overflow-wrap: break-word;
}

.contacts-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.contacts-box {
  background: #fff;
  border-left: 4px solid #005b96;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.contacts-info {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.contacts-info strong {
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}

.contacts-info a {
  color: #005b96;
  text-decoration: none;
}

.contacts-qrbox img {
  width: 160px;
  height: 160px;
  border-radius: 6px;
}

.contacts-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: #003f6d;
  text-align: center;
  margin-bottom: 20px;
}

.contacts-table {
  width: 100%;
  max-width: 500px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border-collapse: collapse;
  margin: 0 auto;
}

.contacts-table td {
  padding: 10px 16px;
  border-bottom: 1px solid #ddd;
  font-size: 0.95rem;
  color: #333;
}

.contacts-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 768px) {
  .contacts-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .contacts-info {
    flex-direction: column;
    gap: 16px;
  }

  .contacts-qrbox {
    align-self: center;
    margin-top: 20px;
  }

  .contacts-table td {
    text-align: center;
  }
}
