body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Açık gri arka plan - görsel yüklenmezse diye */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url('background.jpg'); /* Arka plan görselinin yolu */
    background-size: cover; /* Görseli tam kapsa */
    background-position: center; /* Görseli ortala */
    background-repeat: no-repeat; /* Görseli tekrarlama */
    background-attachment: fixed; /* Sayfa kaydırıldığında görselin sabit kalması */
}

.container {
    background-color: rgba(255, 255, 255, 0.85); /* Yarı saydam beyaz container */
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    padding: 40px;
    text-align: center;
    width: 90%;
    max-width: 960px;
    z-index: 1; /* İçeriğin arka planın üzerinde olmasını sağlar */
    position: relative; /* z-index için gerekli */
}

main h1 {
    color: #1e88e5; /* Otomotiv Mavisi - Daha canlı bir ton */
    margin-bottom: 15px;
}

main p {
    color: #333; /* Koyu gri yazı */
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-info {
    display: flex;
    justify-content: space-around;
    margin-bottom: 25px;
    text-align: left;
}

.address h3 {
    color: #212121; /* Siyah başlık */
    margin-top: 0;
    margin-bottom: 5px;
}

.address p {
    margin-bottom: 0; /* Satır altındaki varsayılan boşluğu kaldır */
    line-height: 1.3; /* Satır yüksekliğini normalleştir */
}

.contact-details p {
    margin-bottom: 5px;
}

.contact-details a {
    color: #1976d2; /* Otomotiv Mavisi - Linkler için biraz daha koyu bir ton */
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

footer {
    margin-top: 30px;
    color: #777; /* Açık gri footer yazısı */
    font-size: 0.9em;
}

/* Mobil cihazlar için düzenlemeler */
@media (max-width: 768px) {
    .container {
        padding: 30px;
    }

    .