/* Hizmetler Başlık */
.hero-section {
    background: linear-gradient(135deg, #ffa600, #ffa600, #ffc936);
    color: #fff;
}

/* Hizmetler Bölümü */
.services-section {
    background-color: #ffffff;
}

.service-box {
    /* background-color: #dba718; */
    border-radius: 8px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-icon i {
    color: #19e1c8;
}

.service-icon img {
    width: 5rem;
    height: 5rem;
}

.service-box h3 {
    color: #101010;
}

.service-box p {
    color: #242424;
}

/* Responsive stil */
@media (max-width: 768px) {
    .service-box {
        margin-bottom: 2rem;
    }

    .service-icon i {
        font-size: 3rem;
    }
}
