/* Genel Ayarlar */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Ana İçerik Bölümü */
.main-content-section {
    margin-top: 120px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* Genel Kutu Kapsayıcıları */
.top-boxes-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    width: 90%;
    max-width: 1200px;
    flex-wrap: wrap;
    margin-bottom: 30px; /* Kutular arası boşluk */

}

/* İki Sütunlu Kutu Stili */
.content-box.two-column-flex {
    flex: 1;
    min-width: unset;
    max-width: 1200px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* %80 opak beyaz */
    backdrop-filter: blur(8px); /* Hafif bulanıklık efekti */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(224, 224, 224, 0.5); /* Kenarlığı da hafif şeffaf yapalım */
    overflow: hidden;
    display: flex; /* İçindeki bölümleri yan yana hizalamak için */
    flex-direction: row;
    flex-wrap: wrap;
}

/* Kutu Başlık Alanı (Tüm Bölüm Başlıkları için) */
.box-header {
    background-color: transparent; /* Arka plan tamamen şeffaf yapıldı */
    padding: 18px 30px;
    border-bottom: 2px solid rgba(219, 226, 239, 0.7); /* Kenarlığı da şeffaf yapalım */
    text-align: center;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* Gölge korunuyor */
}

.box-header h2 {
          font-size: 1.6em;
    font-weight: 600;
    color: #000000;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

/* Kutuların İçerik Alanı */
.box-content {
    padding: 30px;
    flex-grow: 1;
}

/* --- Konum Bilgisi Bölümü --- */
.location-container .location-info-section {
    flex: 1;
    min-width: 300px;
    box-sizing: border-box;
    border-right: 1px solid rgba(224, 224, 224, 0.5); /* Çizgiyi de şeffaf yapalım */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-details-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.location-details-list li {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #555;
    display: flex;
    align-items: flex-start;
}

.location-details-list li i {
    font-size: 1.2em;
    margin-right: 10px;
    line-height: 1.6;
}

/* Her bir ikon için özel renkler */
.location-details-list li .icon-company {
    color: #342d76;
}
.location-details-list li .icon-address {
    color: #04a889;
}
.location-details-list li .icon-tax {
    color: #b369d5;
}
.location-details-list li .icon-phone {
    color: #bc0040;
}
.location-details-list li .icon-mail {
    color: #cf7700;
}



/* --- Harita Bölümü --- */
.location-container .map-section {
    flex: 1;
    min-width: 350px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.map-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    align-items: stretch;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(220, 220, 220, 0.6); /* Harita kenarlığı da şeffaf */
    width: 100%;
    height: 100%;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* --- Kariyer Başvuru Bölümü (Contact Section) --- */
.career-contact-container .contact-section {
    flex: 1;
    min-width: 350px;
    box-sizing: border-box;
    border-right: 1px solid rgba(224, 224, 224, 0.5); /* Çizgiyi de şeffaf yapalım */
    /* *** Yeni Eklenen CSS Kuralları *** */
    display: flex;
    flex-direction: column;
    height: 100%; /* Kapsayıcının tam yüksekliğini almasını sağlar */
}

/* *** Yeni Eklenen CSS Kuralları: Buton ve Yazı Alanı *** */
.contact-button-area {
    margin-top: 180px; /* Bu elementin üst boşluğunu otomatik yapar, böylece en alta itilir */
    text-align: center;
    padding: 10px; /* Buton etrafındaki iç boşluk */
}


/* --- İletişim Bilgileri Bölümü (HR Section) --- */
.career-contact-container .hr-section {
    flex: 1;
    min-width: 350px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.contact-list li {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #555;
    display: flex;
    align-items: flex-start;
}

.contact-list li i {
    font-size: 1.2em;
    margin-right: 10px;
    color: #3b82f6;
    line-height: 1.6;
}

.contact-list li a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list li a:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* "Neden Çalışmalısınız" Metin Bölümü */
.why-work-with-us-text {
    margin-bottom: 30px;
    color: #4a4a4a;
    font-size: 0.98em;
    line-height: 1.6;
}

.why-work-with-us-text p {
    margin-bottom: 20px;
    text-align: justify;
}

/* Yarım çizgi için stil */
.separator {
    width: 50%;
    height: 1px;
    background-color: rgba(224, 224, 224, 0.7);
    margin: 30px auto;
}

/* Responsive Düzenlemeler */
@media (max-width: 1024px) {
    .content-box.two-column-flex {
        flex-direction: column;
    }
    .location-container .location-info-section,
    .career-contact-container .contact-section {
        border-right: none;
        border-bottom: 1px solid rgba(224, 224, 224, 0.5);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .location-container .map-section,
    .career-contact-container .hr-section {
        padding-top: 20px;
    }
    .map-content {
        padding: 20px;
    }
    .map-container {
        height: 350px;
    }
       .contact-button-area {
    margin-top: auto; /* Bu elementin üst boşluğunu otomatik yapar, böylece en alta itilir */
    text-align: center;
    padding: 10px; /* Buton etrafındaki iç boşluk */
    font-size: 0.9em;
}
}

@media (max-width: 768px) {
    .main-content-section {
        margin-top: 110px;
        padding-bottom: 40px;
    }
    .top-boxes-container {
        width: 95%;
        gap: 20px;
        margin-bottom: 20px;
    }
    .content-box.two-column-flex {
        border-radius: 8px;
    }
    .box-header {
        padding: 15px 20px;
        border-radius: 8px 8px 0 0;
    }
    .box-header h2 {
        font-size: 1.4em;
    }
    .box-content {
        padding: 20px;
    }
    .location-details-list li,
    .contact-list li {
        font-size: 1em;
        margin-bottom: 12px;
    }
    .location-details-list li i,
    .contact-list li i {
        font-size: 1.1em;
    }
    .map-content {
        padding: 15px;
    }
    .map-container {
        height: 300px;
    }


    .contact-button-area {
    margin-top: auto; /* Bu elementin üst boşluğunu otomatik yapar, böylece en alta itilir */
    text-align: center;
    padding: 10px; /* Buton etrafındaki iç boşluk */
    font-size: 0.8em;
}
}

@media (max-width: 480px) {
    .box-header h2 {
        font-size: 1.2em;
    }
    .location-details-list li,
    .contact-list li {
        font-size: 0.95em;
    }
    .location-details-list li i {
        font-size: 1em;
    }
    .map-content {
        padding: 10px;
    }
    .map-container {
        height: 250px;
    }
       .contact-button-area {
    margin-top: auto; /* Bu elementin üst boşluğunu otomatik yapar, böylece en alta itilir */
    text-align: center;
    padding: 10px; /* Buton etrafındaki iç boşluk */
    font-size: 0.7em;
}
}