﻿/* hizmetler.css */

/* Genel stil */
.hizmet-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 20px auto;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hizmet-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.hizmet-baslik {
    font-size: 1.5em;
    margin-top: 10px;
    color: #333;
    font-weight: bold;
    text-align: center;
}

.hizmet-aciklama {
    font-size: 1em;
    color: #666;
    margin-top: 10px;
    text-align: center;
}

.page-title {
    text-align: center;
    font-size: 2em;
    color: #444;
    margin-top: 20px;
}

.contact-section {
    background-color: #f5f5f5;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
    border-top: 2px solid #ddd;
}

    .contact-section h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .contact-section ul {
        list-style: none;
        padding: 0;
        font-size: 16px;
    }

    .contact-section li {
        margin: 10px 0;
    }

    .contact-section a {
        color: #333;
        text-decoration: none;
        font-weight: bold;
    }

        .contact-section a:hover {
            color: #007bff;
        }

    .contact-section img {
        width: 20px;
        vertical-align: middle;
        margin-right: 5px;
    }

/* Mobil uyumlu stil */

/* Ekran genişliği 768px veya daha küçükse (tablet ve telefonlar) */
@media (max-width: 768px) {
    .hizmet-container {
        padding: 10px;
        margin: 10px;
    }

    .hizmet-baslik {
        font-size: 1.2em;
    }

    .hizmet-aciklama {
        font-size: 0.9em;
    }

    .page-title {
        font-size: 1.8em;
    }

    .contact-section h2 {
        font-size: 20px;
    }

    .contact-section ul {
        font-size: 14px;
    }
}

/* Ekran genişliği 480px veya daha küçükse (küçük telefonlar) */
@media (max-width: 480px) {
    .hizmet-container {
        max-width: 100%;
        margin: 10px;
    }

    .hizmet-baslik {
        font-size: 1.1em;
    }

    .hizmet-aciklama {
        font-size: 0.85em;
    }

    .contact-section h2 {
        font-size: 18px;
    }

    .contact-section ul {
        font-size: 13px;
    }

    .contact-section li {
        margin: 8px 0;
    }
}
