* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #f2f2f2;
  color: #333;
}

.logo-area {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
}
.logo-area h1 {
  font-size: 2rem;
}

.header {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: #fff;
}

.giris-formu {
  background: #f1f1ff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  max-width: 360px;
  width: 100%;
}

.giris-formu h2 {
  text-align: center;
  color: #2575fc;
  margin-bottom: 1rem;
}

.giris-formu input {
  width: 100%;
  padding: 0.9rem;
  margin-bottom: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.giris-formu button {
  width: 100%;
  background: #2575fc;
  color: white;
  border: none;
  padding: 0.9rem; 
  border-radius: 8px;
  font-size: 1.1rem; 
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.giris-formu button i {
  margin-right: 8px;
  font-size: 1.1rem;
}

.giris-formu button:hover {
  background: #1a5edc;
}

.baslik-alani {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
}
.baslik-alani h2 {
  font-size: 1.5rem;
  color: #333;
}
.baslik-alani p {
  margin-top: 0.5rem;
  color: #555;
}

/* Kutular */
.kutular {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 2rem;
  background: #f9f9f9;
}
.kutu {
  flex: 1 1 250px;
  background: white;
  margin: 1rem;
  padding: 1.5rem;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.kutu:hover {
  transform: scale(1.05);
}
.kutu i {
  font-size: 2rem;
  color: #2575fc;
  margin-bottom: 1rem;
}
.kutu h3 {
  margin-bottom: 0.5rem;
}

.content {
  padding: 2rem;
  background: white;
}
.content h2 {
  color: #6a11cb;
  margin-bottom: 1rem;
}
.content p {
  color: #444;
}

.alt-content {
  border-top: 4px solid #6a11cb;
  background: #f7f7ff;
}

.sss {
  padding: 2rem;
  background: white;
}
.sss h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #6a11cb;
}
.sss-item {
  margin-bottom: 1rem;
}
.sss-item button {
  width: 100%;
  text-align: left;
  padding: 1rem;
  background: #e8e8ff;
  border: none;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 6px;
}
.sss-item button i {
  margin-right: 8px;
}
.cevap {
  display: none;
  padding: 0.8rem;
  background: #f3f3f3;
  border-left: 4px solid #2575fc;
  margin-top: 0.5rem;
  border-radius: 0 6px 6px 6px;
}
.cevap.acik {
  display: block;
}

footer {
  background: #2c2c54;
  color: white;
  padding: 1.5rem;
  text-align: center;
}
footer .sosyal a {
  color: white;
  margin: 0 10px;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .baslik-alani {
    order: 2;
  }
  .giris-formu {
    order: 1;
  }
}
.content img {
  max-width: 50%;       
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  object-fit: contain;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .content img {
    max-width: 100%;     
  }
}
  .iletisim {
    max-width: 600px;
    margin: 2rem auto 4rem;
    padding: 1.5rem 2rem;
    background: #f5f7ff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(37, 117, 252, 0.2);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .iletisim h1 {
    text-align: center;
    color: #2575fc;
    margin-bottom: 1rem;
    font-size: 2.4rem;
    font-weight: 700;
  }

  .iletisim-aciklama {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .iletisim-formu label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.4rem;
    margin-top: 1rem;
  }

  .iletisim-formu input,
  .iletisim-formu textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #cdd9ff;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.3s ease;
  }

  .iletisim-formu input:focus,
  .iletisim-formu textarea:focus {
    outline: none;
    border-color: #2575fc;
    box-shadow: 0 0 8px rgba(37, 117, 252, 0.4);
  }

  .iletisim-formu button {
    margin-top: 1.8rem;
    width: 100%;
    background: #2575fc;
    color: white;
    font-weight: 700;
    padding: 0.9rem;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .iletisim-formu button:hover {
    background: #1a4dcc;
  }
