/* Genel ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Konteyner boyutları mobil için optimize */
.container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 15px;
}

/* Header ve Logo */
header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

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

nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    margin-top: px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* İlan formu */
form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

form input[type="url"],
form input[type="ad-soyad"],
form input[type="file"],
form input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #555;
}

/* Nasıl Çalışır Bölümü */
#nasil-calisir p {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: #fff;
    margin-top: 20px;
}

.social-icons {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
}

.icon {
    width: 24px;
    height: 24px;
    transition: transform 0.2s;
}

.icon:hover {
    transform: scale(1.1); /* Üzerine gelince biraz büyütme efekti */
}