/* Genel sayfa düzeni */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    color: #333;
}

.container {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
    background-color: #fff;
}

h1, h2, h3 {
    color: #3b3b3b;
}

/* Hizmet Kartları */
.services {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.service {
    background-color: #f0f0f0;
    border-radius: 12px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.service-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Yorumlar */
.comments {
    background-color: #eaeaea;
    padding: 20px;
    border-radius: 10px;
}

.comment {
    background-color: #fff;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 10px;
    border-left: 5px solid #6c63ff;
}

/* Butonlar */
.phone-button,
.whatsapp-button {
    display: block;
    width: 90%;
    max-width: 400px;
    margin: 10px auto;
    padding: 15px 25px;
    font-size: 20px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    font-weight: bold;
    transition: background-color 0.3s;
}

.phone-button {
    background-color: #d32f2f;
    color: white;
}

.phone-button:hover {
    background-color: #b71c1c;
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
}

.whatsapp-button:hover {
    background-color: #1ebe5d;
}

.phone-icon,
.whatsapp-icon {
    font-size: 28px;
    margin-right: 10px;
}

/* İletişim Bilgisi */
.contact-info {
    text-align: center;
    margin: 30px auto;
    font-size: 22px;
}

.contact-info p {
    color: red;
    font-weight: bold;
}

.contact-info a {
    color: red !important;
    font-size: 28px;
    text-decoration: none !important;
    font-weight: bold;
}



.contact-info a:hover {
    color: #ff4444;
}

/* Mobil uyum */
@media screen and (max-width: 600px) {
    .services {
        flex-direction: column;
        align-items: center;
    }

    .service {
        width: 90%;
    }

    .phone-button,
    .whatsapp-button {
        font-size: 18px;
        padding: 12px 20px;
    }

    .contact-info {
        font-size: 20px;
    }

    .contact-info a {
        font-size: 24px;
    }
}
