.elementor-354 .elementor-element.elementor-element-6feac3d4{--display:flex;--margin-top:30px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}/* Start custom CSS for html, class: .elementor-element-a80130d *//* Kapsayıcı Konteyner (Bu div'in içindeki her şeyi hedefleyeceğiz) */
.container {
    max-width: 100%;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); /* Hafif gölge efekti */
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
}

/* SADECE .container İÇİNDEKİ BAŞLIKLAR */
.container h1,
.container h2,
.container h3,
.container h4,
.container h5,
.container h6 {
    font-family: 'Poppins', sans-serif;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.2;
}

.container h1 {
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.container h1::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #3498db;
    border-radius: 2px;
}

.container h2 {
    font-size: 2em;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 10px;
    margin-top: 30px;
}

/* SADECE .container İÇİNDEKİ PARAGRAFLAR */
.container p {
    margin-bottom: 1em;
    color: #555;
    text-align: justify;
}

/* SADECE .container İÇİNDEKİ LİSTELER */
.container ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.container li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #444;
}

.container li::before {
    content: '•';
    font-size: 1.2em;
    color: #3498db;
    position: absolute;
    left: 0;
    top: 0;
}

/* SADECE .container İÇİNDEKİ YATAY ÇİZGİLER */
.container hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 40px 0;
}

/* SADECE .container İÇİNDEKİ VURGULAR */
.container strong {
    color: #3498db;
    font-weight: 700;
}

.container em {
    color: #7f8c8d;
}

/* SADECE .container İÇİNDEKİ BAĞLANTILAR */
.container a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.container a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* SADECE .container İÇİNDEKİ RESİMLER ve WordPress Hizalamaları */
.container img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    object-fit: cover;
}

/* Metinle birlikte akan resimler için kapsayıcı */
.container .content-with-image {
    overflow: hidden;
    margin-bottom: 20px;
}

/* WordPress'in alignleft sınıfı için özel stil (container içinde) */
.container .alignleft {
    float: left;
    margin: 0 25px 15px 0;
    max-width: 40%;
    height: auto;
}

/* WordPress'in alignright sınıfı için (container içinde) */
.container .alignright {
    float: right;
    margin: 0 0 15px 25px;
    max-width: 40%;
    height: auto;
}

/* Mobil Duyarlılık (container içindeki elemanları etkiler) */
@media (max-width: 768px) {
 
    .container {
        padding: 20px;
    }

    .container h1 {
        font-size: 2.2em;
    }

    .container h2 {
        font-size: 1.6em;
    }

    .container li {
        padding-left: 20px;
    }

    /* Mobil cihazlarda float'ı kaldır ve resmi ortala (container içinde) */
    .container .alignleft,
    .container .alignright {
        float: none;
        display: block;
        margin: 20px auto;
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .container h1 {
        font-size: 1.3em;
    }

    .container h2 {
        font-size: 1.2em;
    }

    .container li {
        padding-left: 20px;
    }
}/* End custom CSS */