body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: linear-gradient(to right, #4A90E2, #8E44AD);
}

.main-content {
    padding: 20px;
    min-height: 100vh;
}

.service-header {
    text-align: center;
    margin-bottom: 30px;
}

.service-icon {
    width: 50px;
    margin-bottom: 10px;
}

.service-header h1 {
    color: #FFFFFF;
    font-size: 2.5em;
    font-weight: 700;
    margin: 10px 0;
}

.service-header p {
    color: #FFFFFF;
    font-size: 1em;
    margin: 0;
    opacity: 0.8;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.service-item {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #E0E0E0;
    text-decoration: none;
    transition: background 0.3s ease;
}

.service-item:hover {
    background: linear-gradient(45deg, #000000, #EE1D52, #69C9D0);
    /* TikTok gradyan arka plan */
    color: #FFFFFF;
}

.service-item:hover h3,
.service-item:hover .instant-label,
.service-item:hover .service-button {
    color: #FFFFFF;
}

.service-item:hover .instant-label {
    background: rgba(255, 255, 255, 0.2);
}

.service-item:hover .service-button {
    background: #FFFFFF;
    color: #EE1D52;
    /* TikTok kırmızı */
}

.service-item-icon {
    color: #000000;
    /* TikTok siyah */
    font-size: 1.5em;
    margin-bottom: 10px;
}

.service-item h3 {
    margin: 5px 0;
    font-size: 1.2em;
    font-weight: 600;
    color: #333;
}

.instant-label {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #FF6F61;
    color: #FFFFFF;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8em;
    margin: 5px 0;
}

.instant-label i {
    color: #FFFFFF;
    font-size: 0.9em;
}

.service-button {
    background: #000000;
    /* TikTok siyah */
    color: #FFFFFF;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    transition: background 0.3s ease, color 0.3s ease;
}


/* Responsive Düzenlemeler */

@media (max-width: 768px) {
    .service-list {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    .service-header h1 {
        font-size: 2em;
    }
    .service-header p {
        font-size: 0.9em;
    }
    .service-item h3 {
        font-size: 1em;
    }
    .service-button {
        font-size: 0.8em;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .service-list {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    .service-header h1 {
        font-size: 1.5em;
    }
    .service-header p {
        font-size: 0.8em;
    }
    .service-item h3 {
        font-size: 0.9em;
    }
    .service-button {
        font-size: 0.7em;
        padding: 5px 10px;
    }
    .instant-label {
        font-size: 0.7em;
    }
}