.elementor-250 .elementor-element.elementor-element-91d51f7{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--background-transition:0.3s;}.elementor-250 .elementor-element.elementor-element-8cbbe6f{--display:flex;--background-transition:0.3s;}/* Start custom CSS for html, class: .elementor-element-66e1b18 */body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 20px;
    text-align: center;
}

.custom-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    justify-content: flex-start; /* Değişiklik burada yapıldı */
}

.custom-box {
    background-color: #000;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 calc(25% - 20px); /* Her kutuyu eşit genişlikte yapar ve aralarındaki boşluğu hesaba katar */
    box-sizing: border-box;
    text-align: center;
}

.custom-box h3 {
    margin-top: 10px;
    color: #fff; /* Beyaz yazı rengi */
}

.custom-button {
    display: block;
    text-decoration: none;
    color: #fff;
    padding: 10px 0;
    border-radius: 5px;
    transition: background-color 0.3s;
    width: 100%;
    box-sizing: border-box;
}

.custom-button:hover {
    background-color: #333;
}

.custom-box i {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .custom-box {
        flex: 1 1 calc(50% - 20px); /* Ekran küçüldükçe iki sütuna geçer */
    }
}

@media (max-width: 480px) {
    .custom-box {
        flex: 1 1 100%; /* En küçük ekranlarda tek sütuna geçer */
    }
}/* End custom CSS */