.elementor-376 .elementor-element.elementor-element-dc152a0{--display:flex;}.elementor-376 .elementor-element.elementor-element-a06faa1{--spacer-size:84px;}.elementor-376 .elementor-element.elementor-element-c150345{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-f662979 *//* WordPress Özel CSS */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header, 
.site-header {
    background-color: #8E44AD !important;
    color: white;
    padding: 3rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white !important;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    color: white !important;
}

/* Kutu düzeni flex ile yan yana */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Boşluğu eşit dağıt */
    gap: 1.5rem; /* Kutular arası mesafe */
    padding: 2rem 0;
}

/* Servis kartları (kutular) */
.service-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex: 1; /* Esneklik sağla */
    min-width: 250px; /* Minimum genişlik */
    max-width: 280px; /* Maksimum genişlik */
    text-align: left;
}

.service-card:hover {
    transform: translateY(-5px);
}

.icon {
    font-size: 2.5rem;
    color: #8E44AD !important;
    margin-bottom: 1.5rem;
    text-align: left;
}

.service-card h2 {
    color: #8E44AD !important;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-card ul li::before {
    content: "•";
    color: #9B59B6;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Footer */
footer {
    background-color: #8E44AD !important;
    color: white !important;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 3rem;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }

    /* Küçük ekranlarda kutuların alt alta gelmesi için */
    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        max-width: 100%;
    }
}/* End custom CSS */