.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    text-align: center;

    display: flex;
    flex-direction: column;      /* alt alta diz */
    
    gap: 1rem;
    width: 100%;
    max-width: 400px;   
}

.contact-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-item {
  display: flex;
  align-items: center;         /* ikon ve metni dikey ortala */
  gap: 0.75rem;
  width: 100%;                 /* tam genişlik */
}

.icon-link img {
  width: 30px;
  height: 30px;
  display: block;
}

.text-link {
  text-decoration: underline;
  color: #007BFF;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.3;
  white-space: nowrap;         /* satır kırma olmasın */
  overflow: hidden;
  text-overflow: ellipsis;     /* taşan metin ... olsun */
}

.text-link:hover {
  color: #0056b3;
}