.contact-info {
  padding: 50px 15px;
  border-radius: 12px;
  max-width: 550px;
  margin: 0 auto;
  margin-left: auto;
  margin-right: 0;
}

.contact-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 30px 0;
  text-align: left;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.ci-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 30px;
}

.ci-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.ci-icon {
  width: 50px;
  height: 50px;
  background-color: #8B2B2B;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 24px;
  flex-shrink: 0;
}

.ci-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999999;
  font-weight: 400;
  margin-bottom: 0px;
}

.ci-value {
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 500;
  line-height: 1.5;
}

.ci-value a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.ci-value a:hover {
  color: #8B2B2B;
}

/* Tablet */
@media (max-width: 1024px) {
  .contact-info {
    padding: 45px 35px;
    max-width: 550px;
  }
  .contact-info h3 {
    font-size: 26px;
  }
  .ci-value {
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .contact-info {
    padding: 35px 25px;
    max-width: 100%;
    margin: 0 15px;
    border-radius: 8px;
  }
  .contact-info h3 {
    font-size: 24px;
    margin: 0 0 25px 0;
  }
  .ci-item {
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .ci-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
    border-radius: 6px;
  }
  .ci-label {
    font-size: 11px;
    margin-bottom: 5px;
  }
  .ci-value {
    font-size: 15px;
  }
  .ci-value a {
    word-break: break-word;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .contact-info {
    padding: 30px 20px;
    margin: 0 10px;
  }
  .contact-info h3 {
    font-size: 22px;
  }
  .ci-item {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .ci-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .ci-value {
    font-size: 14px;
  }
}
