/* GENEL */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: #f1f3f4;
}

/* HEADER */
header {
    background: linear-gradient(135deg, #007bff, #00c3ff);
    color: white;
    text-align: center;
    padding: 45px 20px;
    border-bottom-left-radius: 35px;
    border-bottom-right-radius: 35px;
}

header h1 {
    font-size: 2rem;
    margin: 0;
    font-weight: bold;
}

header p {
    margin-top: 10px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* HİZMET KARTLARI */
.services {
    margin-top: -20px;
    padding: 20px;
}

.services h2 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #444;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-list li {
    list-style: none;
}

.service-list a {
    display: block;
    padding: 16px;
    background: white;
    border-radius: 12px;
    text-align: center;
    font-size: 1.1rem;
    color: #007bff;
    font-weight: bold;
    border: 1px solid #e3e3e3;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.2s;
}

.service-list a:hover {
    background: #007bff;
    color: white;
    transform: scale(1.03);
}
