body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-image: url('header.png'); /* Header için görsel */
    background-size: cover; /* Görseli tamamen kapla */
    background-position: center; /* Ortala */
    background-repeat: no-repeat; /* Tekrar etme */
    color: white; /* Yazı rengi beyaz */
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin-bottom: 50px; /* Header ile diğer içerik arasında boşluk */
}

.header-title {
    font-size: 28px;
    /* Biraz daha küçük font boyutu */
    font-weight: bold;
    color: white;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: normal;
    /* Satır atlamasına izin ver */
    text-align: center;
    /* İki satır için merkezi hizalama */
    line-height: 1.2;
    /* Satır aralığını ayarla */
    max-width: 80%;
    /* Metnin çok genişlememesini sağla */
}

@media (max-width: 768px) {
    .header-title {
        font-size: 22px;
        white-space: normal;
        /* Satır atlamasına izin ver */
        text-align: center;
        /* İki satır için merkezi hizalama */
        padding: 0 10px;
        /* Mobilde kenar boşluklarını biraz genişlet */
        max-width: 90%;
        /* Metnin çok genişlememesini sağla */
    }

    header {
    background-image: url('header.png'); /* Header için görsel */
    background-size: cover; /* Görseli tamamen kapla */
    background-position: center; /* Ortala */
    background-repeat: no-repeat; /* Tekrar etme */
    color: white; /* Yazı rengi beyaz */
    
        padding: 10px 0;
        /* Mobilde header padding ayarı */
    }
}

.logo {
    flex-shrink: 0;
    /* Logonun küçülmesini engeller */
    margin-left: 20px;
    /* Logoyu sola hizalamak için boşluk */
}

.logo img {
    height: 50px;
    /* Logo yüksekliği, ihtiyaç duyduğunuz boyuta göre ayarlayın */
    margin-left: 100%;
}

nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-grow: 1;
    justify-content: flex-end;
    margin-right: 150px;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px;
    font-size: 16px;
    background-color: #ea2628;
    /* Diğer linkler için mavi arka plan */
    border-radius: 4px;
}

nav a:hover {
    background-color: #663b3c;
}

/* Üye Ol linki için özel stil */
nav a:last-child {
    color: white;
    font-weight: bold;
    padding: 10px;
    border-radius: 4px;
    margin-right: 5px;
}

.user-area {
    background-color: #a3a3a3;
    /* Hafif gri arka plan */
    padding: 10px 20px;
    color: white;
    /* Gri arka plan üzerinde beyaz yazı rengi */
    font-weight: bold;
    text-align: center;
    /* Yazıyı ortalama */
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    /* İçerik kaymasını engelle */
    height: 40px;
    /* Yükseklik boyunca genişleme */
    box-sizing: border-box;
    /* Padding ve border'ları genişliğe dahil et */
    border-radius: 0;
    /* Köşeleri keskin yap */
}

.banner {
    background-color: #7e8bc8; /* Arka plan rengi */
    color: white; /* Yazı rengi */
    padding: 40px 20px; /* İçerik boşlukları */
    text-align: center; /* Metin hizalama */
    font-size: 24px; /* Yazı boyutu */
    font-weight: bold; /* Kalın yazı */
    line-height: 1.4; /* Satır yüksekliği */
    margin: 100px auto; /* Yukarıda ve aşağıda boşluk, ortalamak için 'auto' */
    max-width: 900px; /* Banner genişliği */
    box-sizing: border-box; /* Padding ve border genişliğe dahil */
    border-radius: 4px; /* Kenar yuvarlama */
}
.banner .line1 {
    font-size: 28px;
    /* İlk satır font büyüklüğü */
    font-weight: bold;
    /* Kalın yazı */
}

.banner .line2 {
    font-size: 20px;
    /* İkinci satır font büyüklüğü */
    font-weight: normal;
    /* Normal yazı */
    margin-top: 10px;
    /* İlk satır ile araya boşluk */
}

.divider {
    padding: 180px 0;
    /* Üst ve alt padding */
    text-align: center;
    /* Yazıyı ortalama */
    font-size: 20px;
    /* Yazı boyutu */
    font-weight: bold;
    /* Kalın yazı */
    line-height: 1.4;
    /* Satır yüksekliği */
    margin: 30px auto;
    /* Üst ve alt margin */
    max-width: 900px;
    /* Banner ve form ile aynı genişlikte */
    box-sizing: border-box;
    /* Padding ve border'ları genişliğe dahil et */
}

.divider div {
    margin-bottom: 10px;
    /* Satırlar arası boşluk */
}

.divider .line1 {
    font-size: 30px;
    /* İlk satır font büyüklüğü */
    font-weight: bold;
    /* Kalın yazı */
}

.divider .line2 {
    font-size: 24px;
    /* İkinci satır font büyüklüğü */
    font-weight: normal;
    /* Normal yazı */
}

form {
    max-width: 900px;
    margin: 20px auto;
    /* Üst ve alt boşluk, ortalama; header yüksekliğine bağlı olarak ayarlandı */
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    display: flex;
    flex-wrap: wrap;
    /* Sütunlar arasında geçiş için */
    gap: 20px;
    /* Sütunlar arasında boşluk */
    box-sizing: border-box;
    /* Padding ve border'ları genişliğe dahil et */
}

.form-group {
    display: flex;
    justify-content: space-between;
    /* Sağ ve sol hizalama */
    width: 100%;
}

.form-group.left {
    flex-basis: 48%;
    /* Sütun genişliği */
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* BÜTÜN BOŞUKLAR EŞİT DEĞİŞİYOR NORMALİ !% İDİ*/
    /* Alanlar arası boşluk */
}

.form-group.right {
    flex-basis: 48%;
    /* Sütun genişliği */
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* BÜTÜN BOŞUKLAR EŞİT DEĞİŞİYOR NORMALİ !% İDİ*/
    /* Alanlar arası boşluk */
}


.form-group.left label {
    margin-bottom: 3px;
    font-weight: bold;
}

.form-group.right label {
    margin-bottom: 28px;
    font-weight: bold;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    /* Padding ve border'ları genişliğe dahil et */
}

input[type="file"] {
    width: 100%;
    padding: 5.5px;
    border: 1px solid #ccc;
    border-radius: 2px;
    box-sizing: border-box;
    /* Padding ve border'ları genişliğe dahil et */
}

small.file-description {
    font-size: 11px;
    color: #666;
    margin-bottom: 10px;
    /* Başlığa daha yakın */
}

button[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    /* Butonu formun genişliğine göre ayarla */
    margin-top: 5px;
    /* Üstten boşluk */
}

button[type="submit"]:hover {
    background-color: #45a049;
}

/* Checkbox ve metin hizalama */
.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    /* Checkbox grubunun altına boşluk */
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    /* Checkbox'un metinle arasına boşluk */
    transform: scale(1.2);
    /* Checkbox boyutunu büyütme (isteğe bağlı) */
}

.checkbox-group label {
    margin: 0;
    /* Etiketin margin değerini sıfırla */
    font-size: 14px;
    /* Metin boyutu */
}

/* Bilgilendirme metni */
.legal-info {
    font-size: 12px;
    /* Küçük punto */
    color: #666;
    /* Yazı rengi */
    margin-top: 10px;
    /* Checkbox ve metin arasına boşluk */
    line-height: 1.6;
    /* Satır yüksekliği */
    display: block;
    /* Satır içi öğeleri bir blokta tutar */
}

/* Düğme ile diğer form elemanları arasına boşluk ekle */
button[type="submit"] {
    margin-top: 20px;
    padding: 10px 15px;
}

@media (max-width: 768px) {
    .logo img {
        height: 55px;
        /* Logo yüksekliği, ihtiyaç duyduğunuz boyuta göre ayarlayın */
        margin-left: 0px;
    }
    

    .banner {
        padding: 15px;
        font-size: 20px;
    }

    .divider {
        padding: 80px 25px;
        font-size: 16px;
    }

    form {
        margin-top: 70px;
        padding: 12px;
    }

    .form-group.left,
    .form-group.right {
        flex-basis: 100%;
        gap: 15px;
    }
}


/* Footer Styles */
footer {
    background-color: #ffffff;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    position: relative;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 150px;
    /* Her bölümün minimum genişliği */
}

.footer-section h4,
.footer-section p {
    margin: 10px 0;
}

.footer-section.left {
    text-align: left;
}

.footer-section.center img {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.footer-section.center .social-icons a {
    margin: 0 10px;
    color: white;
    font-size: 18px;
    text-decoration: none;
}

.footer-section.right {
    text-align: right;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

/* Mobil versiyon için footer düzenlemeleri */
@media (min-width: 769px) {
    .footer-logo {
        flex: none;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    footer {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .footer-section {
        flex: 1 1 auto;
        text-align: center;
        margin: 0;
        padding: 10px;
    }

    .footer-section img {
        margin-bottom: 20px;
    }

    .footer-section.left,
    .footer-section.center,
    .footer-section.right {
        margin-bottom: 20px;
    }

    .footer-logo {
        position: static;
        margin: 20px 0;
        width: 150px;
        height: auto;
    }
}

.info-container {
    max-width: 800px;
    margin: 150px auto;
    padding: 120px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.info-container h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
    color: #15151b;
}

.info-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #15151b;
}

.info-content p {
    font-size: 18px;
}

.info-content ul {
    margin-top: 10px;
    list-style-type: disc;
    padding-left: 20px;
}

.info-content ul li {
    margin-bottom: 10px;
    font-size: 18px;
}

.continue-button {
    text-align: right;
    margin-top: 30px;
}

.continue-button a {
    padding: 10px 20px;
    background-color: #ea2628;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
}

.footer-logo {
    text-align: center;
}

@media (max-width: 768px) {
    .info-container {
        margin: 50px 20px;
        padding: 20px;
    }

    .info-container h2 {
        font-size: 24px;
    }

    .info-content h3 {
        font-size: 20px;
    }

    .info-content p,
    .info-content ul li {
        font-size: 16px;
    }
}

/* Daha küçük ekranlar için (telefon) */
@media (max-width: 480px) {
    .info-container {
        margin: 130px 15px;
        padding: 15px;
    }

    .info-container h2 {
        font-size: 22px;
    }

    .info-content h3 {
        font-size: 18px;
    }

    .info-content p,
    .info-content ul li {
        font-size: 14px;
    }
}

.success-message {
    width: 100%;
    /* Tam genişlik */
    min-height: calc(100vh - 70px);
    /* Sayfanın yüksekliği kadar genişlik, header yüksekliğini çıkartarak */
    margin-top: 70px;
    /* Header yüksekliği kadar boşluk (header yüksekliğine göre ayarlayın) */
    text-align: center;
    font-size: 20px;
    color: #07094b;
    /* Başlık rengi */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* İçerikleri ortalar */
}

.success-message h1 {
    font-size: 28px;
    margin-bottom: 120px;
}

.success-message p {
    margin-bottom: 10px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

@media (max-width: 768px) {
    .footer-logo img {
        height: 40px;
        width: auto;
    }
}
@media (max-width: 768px) {
    .footer-logo img {
        height: 40px;
        width: auto;
    }
}
/* Yükleme animasyonu stili */
.loader {
    border: 8px solid #f3f3f3;
    /* Gri arka plan */
    border-top: 8px solid #07094b;
    /* Animasyon rengi */
    border-radius: 50%;
    /* Çember oluşturmak için */
    width: 60px;
    /* Çemberin genişliği */
    height: 60px;
    /* Çemberin yüksekliği */
    animation: spin 1.5s linear infinite;
    /* Döndürme animasyonu */
    margin: 0 auto;
    /* Ortalamak için */
    display: none;
    /* Başlangıçta gizle */
}

/* Döndürme animasyonu */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* File description container */
.file-info {
    display: flex;
    align-items: center;
    /* Center items vertically */
    gap: 10px;
    /* Space between description and link */
}

/* File description text */
small.file-description {
    font-size: 12px;
    color: #666;
    margin: 0;
    /* Remove margin */
}

/* Video link styling */
.video-link {
    color: #007bff;
    /* Link color */
    text-decoration: none;
    /* Remove underline */
    font-size: 12px;
    /* Match font size with description */
}

.video-link:hover {
    text-decoration: underline;
    /* Underline on hover */
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.checkbox-group input[type="radio"] {
    margin-right: 10px;
}

button[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
}

button[type="submit"]:hover {
    background-color: #45a049;
}

@media (max-width: 768px) {
    .form-group {
        margin-bottom: 10px;
    }

    button[type="submit"] {
        padding: 12px 20px;
        font-size: 16px;
    }
}
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
    box-sizing: border-box;
    font-size: 16px;
    cursor: pointer;
}

select:focus {
    outline: none;
    border-color: #4CAF50;
}

option {
    padding: 10px;
    font-size: 16px;
}

/* Ensure footer sticks to the bottom */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}
/* Hamburger Menu for Mobile */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Hamburger Menu Icon */
.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 21px;
    position: relative;
    background-color: white; /* Arka planı beyaz yap */
    padding: 5px; /* Daha rahat tıklanabilir yap */
    border-radius: 5px; /* Köşeleri yuvarlat */
}

.hamburger .line {
    height: 4px;
    background-color: black; /* Çizgilerin rengi siyah yap */
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hamburger menu icon görünür olmalı küçük ekranlarda */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        margin-right: 20px;
    }

    nav {
        display: none;
        flex-direction: column;
        gap: 10px;
        background-color: #ffffff; /* Menü arka plan rengi */
        position: absolute;
        top: 100%;
        right: 0;
        width: 250px; /* Menü genişliği */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        border-radius: 0 0 5px 5px;
        padding: 15px 0; /* Menü etrafında biraz boşluk */
        margin-right: 5px;
    }

    nav.active {
        display: flex;
    }

    nav a {
        text-align: center;
        padding: 12px 20px; /* Buton padding */
        color: white; /* Yazı rengi beyaz */
        font-size: 18px; /* Buton yazı boyutu */
        text-decoration: none; /* Alt çizgiyi kaldır */
        transition: background-color 0.3s ease; /* Arka plan değişimi */
        border-radius: 5px; /* Köşeleri yuvarlat */
    }

    nav a:hover {
        background-color: #333; /* Hover'da arka plan rengi */
    }

    nav a:active {
        background-color: #555; /* Tıklanma efekti */
    }
}
/* Main Content Adjustments */
main {
    margin-top: 80px; /* Ensure it's below the header */
}
/* Başvuru Yap Butonu */
.apply-button-container {
    text-align: center;
    margin-top: 30px; /* Harita ile buton arasına boşluk */
    display: none; /* Varsayılan olarak gizle */
}

/* Başvuru Yap Butonu - Mobilde görünür */
@media (max-width: 768px) {
    .apply-button-container {
        display: block; /* Mobilde görünür yap */
    }

    .apply-button {
        display: inline-block;
        padding: 15px 30px;
        font-size: 18px;
        font-weight: bold;
        text-transform: uppercase;
        background-color: #ea2628; /* Butonun arka plan rengi */
        color: white; /* Yazı rengi */
        text-decoration: none; /* Alt çizgiyi kaldır */
        border-radius: 50px; /* Yuvarlatılmış köşeler */
        box-shadow: 0 4px 10px rgba(0, 102, 204, 0.2); /* Hafif gölge efekti */
        transition: all 0.3s ease; /* Yumuşak geçiş efektleri */
    }

    .apply-button:hover {
        background-color: #ea2628; /* Hover durumunda renk değişimi */
        box-shadow: 0 6px 15px rgba(0, 102, 204, 0.3); /* Hover'da gölge efekti artar */
        transform: translateY(-3px); /* Hover'da buton hafifçe yukarı kayar */
    }

    .apply-button:active {
        background-color: #ea2628; /* Tıklama durumunda daha koyu renk */
        box-shadow: 0 4px 10px rgba(0, 102, 204, 0.2); /* Tıklama sonrası eski gölge */
        transform: translateY(1px); /* Buton tıklanırken biraz aşağı kayar */
    }
}
.banner-uye {
    background-color: #ea2628; /* Arka plan rengi */
    color: white; /* Yazı rengi */
    padding: 40px 120px; /* İçerik boşlukları */
    text-align: center; /* Metin hizalama */
    font-size: 24px; /* Yazı boyutu */
    font-weight: bold; /* Kalın yazı */
    line-height: 1.4; /* Satır yüksekliği */
    margin: 100px auto; /* Yukarıda ve aşağıda boşluk, ortalamak için 'auto' */
    max-width: 900px; /* Banner genişliği */
    box-sizing: border-box; /* Padding ve border genişliğe dahil */
    border-radius: 4px; /* Kenar yuvarlama */
}

.card-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px auto;
    max-width: 1200px;
}

.card {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
    .card-section {
        grid-template-columns: 1fr; /* Tek sütun düzeni */
        gap: 20px; /* Kartlar arasındaki boşluk */
        padding: 0 15px; /* Mobil cihazlarda kenar boşlukları */
    }

    .card {
        padding: 20px; /* Kart içeriğini sıkıştır */
        border-radius: 12px; /* Hafif yuvarlatılmış köşeler */
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* Daha hafif gölge */
    }

    .card-icon-wrapper {
        width: 60px;
        height: 60px;
        margin: 0 auto 15px auto; /* İkonu merkeze ve daha küçük aralığa yerleştir */
    }

    .card-icon {
        width: 30px;
        height: 30px; /* İkon boyutunu küçült */
    }

    .card h3 {
        font-size: 18px; /* Başlık yazı boyutunu küçült */
        margin-bottom: 8px; /* Başlık-alt açıklama boşluğunu daralt */
    }

    .card p {
        font-size: 14px; /* Açıklama yazı boyutunu küçült */
        line-height: 1.4; /* Satır aralığını sıkıştır */
    }
}

.map-content img {
    display: block; /* Tarayıcıların varsayılan boşluk eklemesini engeller */
    max-width: 100%; /* Görüntüyü kapsayıcı alana uydurur */
    height: auto; /* Oran korumasını sağlar */
    transform: translateX(110px); /* Görseli 20px sağa kaydırır */
}

.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
  }
  
  .floating-buttons .btn {
    background-color: #007bff;
    color: white;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 30px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    text-align: center;
    transition: background 0.3s;
  }
  
  .floating-buttons .btn:hover {
    background-color: #0056b3;
  }
  
  .floating-buttons .whatsapp {
    background-color: #25D366;
  }
  
  .floating-buttons .whatsapp:hover {
    background-color: #1eb84d;
  }
  .floating-buttons .btn {
    display: flex;
    align-items: center;  /* Yatayda hizalama */
    justify-content: center; /* Buton içindeki öğeleri ortala */
    gap: 8px;  /* Buton ile ikon arasındaki mesafe */
    padding: 12px 16px;
}

.floating-buttons .btn i {
    font-size: 18px;  /* İkon boyutunu ayarlıyoruz */
}

.floating-buttons .whatsapp i {
    font-size: 20px;  /* WhatsApp ikonu biraz daha büyük olabilir */
}
/* Ana İçerik Bölümü (Main Section) */
.main-container {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Info Section */
  .info-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
  }
  
  .info-section .text-content {
    flex: 1;
    max-width: 550px;
  }
  
  .info-section .text-content h1 {
    font-size: 36px;
    color: #222;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  .info-section .text-content p {
    font-size: 18px;
    color: #666;
  }
  
  .info-section .map-content img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
  }
  
  /* Yeni Eklenen Mesaj Bölümü */
  .owner-message {
    background-color: #f5f7fb;
    padding: 50px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
  }
  
  .owner-message-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
  }
  
  .owner-message-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
  }
  
  .owner-message-box strong {
    font-size: 18px;
    color: #222;
  }
  
  /* Info Details */
  .info-details {
    background-color: #ffffff;
    padding: 60px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
  }
  
  .info-details-text {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .info-details-text h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #222;
  }
  
  .info-details-text p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
  }
  
  /* Testimonials */
  .testimonials {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
  }
  
  .testimonials h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .testimonials p {
    color: #666;
    font-size: 16px;
  }
  
  .testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
  }
  
  .testimonial-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 20px;
    max-width: 260px;
    flex: 1 1 260px;
    text-align: left;
  }
  
  .testimonial-card .stars {
    color: #f4b400;
    font-size: 18px;
    margin-bottom: 8px;
  }
  
  .testimonial-card strong {
    display: block;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
  }
  
  .testimonial-card p {
    font-size: 14px;
    color: #444;
  }
  
  .testimonial-note {
    font-size: 12px;
    color: #999;
    margin-top: 30px;
  }
  
  /* Mobil Uyumluluk */
  @media screen and (max-width: 768px) {
    .info-section {
      flex-direction: column;
      align-items: center;
    }
  
    .info-section .text-content h1 {
      font-size: 28px;
    }
  
    .info-section .text-content p {
      font-size: 16px;
    }
  
    .info-section .map-content img {
      width: 90%;
      max-width: 400px;
    }
  
    .owner-message {
      padding: 40px 20px;
    }
  
    .owner-message-box {
      max-width: 100%;
    }
  
    .owner-message-box p {
      font-size: 14px;
    }
  
    .info-details {
      padding: 40px 20px;
    }
  
    .info-details-text h2 {
      font-size: 24px;
    }
  
    .info-details-text p {
      font-size: 14px;
    }
  
    .testimonial-cards {
      flex-direction: column;
      align-items: center;
    }
  
    .testimonial-card {
      max-width: 100%;
      margin-bottom: 20px;
    }
  
    .testimonials h2 {
      font-size: 24px;
    }
  
    .testimonials p {
      font-size: 14px;
    }
  
    .testimonial-note {
      font-size: 10px;
    }
  
    /* Harita (Map) Mobilde Gizleniyor */
    .info-section .map-content img {
      display: none;
    }
  }
  
  @media screen and (max-width: 480px) {
    .info-section .text-content h1 {
      font-size: 24px;
    }
  
    .info-section .text-content p {
      font-size: 14px;
    }
  
    .info-section .map-content img {
      max-width: 100%;
    }
  
    .owner-message {
      padding: 30px 15px;
    }
  
    .info-details {
      padding: 30px 15px;
    }
  
    .testimonial-card {
      padding: 15px;
    }
  
    .testimonial-note {
      font-size: 9px;
    }
  }
  /* Firma Bilgileri Bölümü */
.company-info {
    background-color: #f5f7fb;
    padding: 50px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 60px;
    text-align: left;
  }
  
  .company-info-box {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .company-info h3 {
    font-size: 24px;
    color: #222;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  .company-info p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
  }
  
  .company-info strong {
    font-size: 16px;
    color: #222;
  }
  
  @media screen and (max-width: 768px) {
    .company-info h3 {
      font-size: 20px;
    }
  
    .company-info p {
      font-size: 14px;
    }
  
    .company-info strong {
      font-size: 14px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .company-info h3 {
      font-size: 18px;
    }
  
    .company-info p {
      font-size: 14px;
    }
  
    .company-info strong {
      font-size: 14px;
    }
  }