
/* Reset CSS */
/* Remove all margins, paddings, and borders */
* {
    margin: 0;
    padding: 0;
    border: 0;
}

/* Set default body styles */
body {
    line-height: 1;
    font-family: Arial, sans-serif;
    background-color: #eceef1;
    color: #000000;
}

/* Remove list styles */
ul, ol {
    list-style: none;
}

/* Anchor tag default styles */
a {
    text-decoration: none;
    color: inherit;
}

/* Image responsiveness */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Table reset */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

.hidden { display:none; }


.kapsar { width:100%; float:left; }
.ortala { width:800px; margin:0 auto; }
.icerik { width:100%; float:left; padding-top:40px; }

.header { height:60px; position: relative; }
.logo { display:block; float:left; height:60px; }
.logo img { height:40px; float:left; margin-top:10px; margin-left:15px; }

.menu { float:right; height:60px; padding-right:15px; }
.menu li { display: inline-block; padding-left:10px; padding-right:10px; height:60px; }
.menu li a { display: inline-block; height:30px; line-height:30px; font-size:14px; font-weight:bold; margin-top:25px; }
.menu li a:hover { border-bottom:2px red solid; }


.baslangic { text-align:center; padding-top:80px; }
.baslangic img { display: inline-block; height:250px; margin-bottom:20px; }
.baslangic h1 { font-size:26px; font-weight:normal; line-height:40px; }

.kutular { width:650px; margin:0 auto; text-align:center; position: relative; padding-top:50px; display: flex; gap: 10px; }

.kutular a { display:inline-block; flex:1; height:320px; background:#fff; }
.kutular a img { width:100%; height:auto; float:left; margin-bottom:-10px; }
.kutular a h2 { font-size:16px; width:100%; float:left; text-align:center; padding-bottom:8px; }
.kutular a p { font-size:14px; padding-left:10px; padding-right:10px; width:calc(100% - 20px); float:left; text-align:center; height:70px; }
.kutular a span { display:inline-block; background:#d10000; color:#fff; padding-left:10px; padding-right:10px; height:26px; line-height:26px; font-size:13px; font-weight:bold; }

.kutular a:hover span { background:#000; }

.icerik h1 { font-size:26px; margin-bottom:20px; }
.icerik h2 { font-size:18px; padding-bottom:10px; }




.accordion-container {
    max-width: 800px;
    margin: 0 auto; padding-bottom:20px;
  }
  .accordion {
    background-color: #fff;
    border: 1px solid #ddd;
    margin-bottom: 2px;
    overflow: hidden;
  }
  .accordion-header {
    padding: 10px;
    cursor: pointer;
    background-color: #007BFF;
    color: #fff;
    font-size: 14px;
    transition: background-color 0.3s ease;
  }
  .accordion-header:hover {
    background-color: #0056b3;
  }
  .accordion-content {
    padding: 10px;
    display: none;
    background-color: #fff; font-size:14px;
  }


  .sorguForm { widtH:100%; float:left; background:#fff; height:60px; margin-bottom:15px; }
  .sorguForm input { width:70%; float:left; height:60px; line-height:60px; padding-left:15px; font-size:16px; border:0; outline:0; }
  .sorguForm button { margin:0; padding:0; outline:0; height:50px; float:right; margin-top:5px; margin-right:5px; background:#ff0000; color:#fff; font-size:14px; font-weight:bold;  padding-left:15px; padding-right:15px; }

  .durum { width:100%; float:left; background:#fff; margin-bottom:20px; }
  .durum h3 { width:100%; float:left; padding-left:15px; font-size:16px; padding-top:20px; padding-bottom:10px; }
  .durum ul { width:100%; float:left; font-size:14px; line-height:18px; }
  .durum ul li { width:calc(100% - 30px); float:left; position: relative; display: flex; gap:0; padding-top:10px; padding-bottom:10px; border-bottom:1px #c9c9c9 solid; padding-left:15px; padding-right:15px; }
  .durum ul li span { flex:1;position: relative;  }
  .durum ul li span:last-child { flex:2; }
  .durum ul li:last-child { border-bottom:0; }

  .kayityok { width:100%; float:left; height:250px; background:#fff6f6; text-align:center; margin-bottom:20px; }
  .kayityok i { font-size:74px; width:100%; float:left; text-align:center; padding-top:60px; padding-bottom:20px; }




  .form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  .form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #333;
  }
  fieldset {
    border: none;
    margin: 0;
    padding: 0;
  }
  legend {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #555;
  }
  .contact-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
  }
  .form-group {
    display: flex;
    flex-direction: column;
  }
  .form-group label {
    margin-bottom: 5px;
    font-weight: 600;
    color: #444;
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 10px 12px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fafafa;
    transition: border-color 0.3s ease;
  }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: #007bff;
    outline: none;
  }
  .form-group textarea {
    resize: vertical;
    min-height: 120px;
  }
  .btn-submit {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .btn-submit:hover {
    background-color: #0056b3;
  }