p {
    font-size: 2rem;
    line-height: 1.6;
}
h2 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 16px;
}
.contact-row {
    display: flex;
    align-items: center;
    gap: 16px;
}
.header-row {
    display: flex;
    align-items: center;
    height: 360px;
    background: #4263eb /*#2b8a3e; */
}

.header-flex {
    flex: 1;
}

header nav {
    flex: 2;
}

/*Header solunda logo ve yanında başlık için flex container*/
.header-flex {
    /*display: flex;*/
    align-items: flex-start;   /* center */
    gap: 16px;
}

.site-logo {
    height: 256px;
    width: 256px;
    border-radius: 36px;
    object-fit: cover;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    padding: 4px;
}

.site-image {
    height: 128px;
    width: 128px;
    border-radius: 36px;
    object-fit: cover;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    padding: 4px;
}

.section-image {
    height: 512px;
    width: 512px;
    border-radius: 36px;
    object-fit: cover;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    padding: 4px;
    margin-left: auto;
}


body {
    font-family: Arial, sans-serif;
    background: #fff;
    margin: 0;
    padding: 0;
}

header {
    background:#91a7ff; /* #34a853; */
    color: #fff;
    padding: 20px 0;
    text-align: left;
    position: relative;
    min-height: 256px;
    height: 256px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

nav a:hover {
    color: #222;
}

main {
    max-width: 1500px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

footer {
    display: flex;
    max-height: 100px;
    background: #222;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    /*position: fixed;*/
    width: 100%;
    bottom: 0;
}

section {
    width: 1250px;
    
}

.section-hizmetler {
    background: #fcc419;
    font-size: 24px;
    /*font-weight: bold;*/
    margin-bottom: 16px;
    border-radius: 20px;
    display: flex;
}

/* Ana SSS bölümü için stil */
.section-sss {
    width: 90%;
    max-width: 800px;
    margin: 50px auto;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Akordeon butonları için stil */
.accordion {
    background-color: #f7f7f7;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    transition: background-color 0.3s;
    border-bottom: 1px solid #ddd;
}

.accordion:hover {
    background-color: #e9e9e9;
}

.accordion:last-of-type {
    border-bottom: none;
}

/* Cevap panelleri için stil */
.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.panel p {
    padding-top: 15px;
    padding-bottom: 15px;
    margin: 0;
    line-height: 1.6;
    color: #555;
}



/*section ul {
    font-size: 30px;
}*/

@media (max-width: 600px) {
  .header-row {
    flex-direction: column;
    height: auto;
    padding: 16px 0;
  }
  .header-flex, header nav {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .site-logo, .site-image {
    height: 64px;
    width: 64px;
  }
  nav ul {
    flex-direction: column;
    gap: 8px;
  }
  main {
    padding: 10px;
    margin: 0;
    max-width: 100%;
  }
  h2 {
    font-size: 1.4rem;
  }
  p {
    font-size: 1rem;
  }
}