@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/Satoshi-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/Satoshi-Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/Satoshi-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/Satoshi-MediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/Satoshi-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/Satoshi-BoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/Satoshi-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/Satoshi-BlackItalic.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/Satoshi-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/Satoshi-LightItalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}

/* Genel Stil */
.iletisim {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 108px;
    padding: 20px;
    text-align: center;
    font-family: 'Satoshi', sans-serif;
  }
  
  /* Başlık */
  .iletisim-title {
    font-size: 48px;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 20px;
  }
  
  /* Açıklama */
  .iletisim-description {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
  }
  
  /* İletişim Bilgileri */
  .iletisim-info {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
  }
  
  .iletisim-info strong {
    color: #b53a3a; /* Öne çıkan bilgiler */
  }
  
  /* Responsive Tasarım */
  @media (max-width: 1024px) {
    .iletisim-title {
      font-size: 36px;
    }
  
    .iletisim-description {
      font-size: 16px;
    }
  
    .iletisim-info {
      font-size: 15px;
    }
  }
  
  @media (max-width: 768px) {
    .iletisim-title {
      font-size: 28px;
    }
  
    .iletisim-description {
      font-size: 14px;
    }
  
    .iletisim-info {
      font-size: 14px;
    }
  }
  
  @media (max-width: 480px) {
    .iletisim-title {
      font-size: 24px;
    }
  
    .iletisim-description {
      font-size: 14px;
    }
  
    .iletisim-info {
      font-size: 13px;
    }
  }
  