body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 50px;
    margin-right: 15px;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

section {
    background-color: white;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.galeri {
    display: flex;
    justify-content: space-between;
}

.galeri img {
    width: 30%;
    border-radius: 5px;
}

.iletisim-dugmeleri {
    display: flex;
    gap: 15px;
}

.arama-dugmesi, .whatsapp-dugmesi {
    display: inline-block;
    padding: 10px 15px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.whatsapp-dugmesi {
    background-color: #25D366;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
}