/* Genel Ayarlar */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f9f9f9;
    color: #333;
}

header {
    background: linear-gradient(to right, #c33764, #1d2671);
    color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 1.8rem;
    font-weight: bold;
}

header nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

header nav a:hover {
    color: #ffd700;
}

.hero {
    text-align: center;
    padding: 80px 20px;
    background-image: url('https://images.unsplash.com/photo-1532298229144-0ec0c57515c7');
    background-size: cover;
    background-position: center;
    color: white;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero audio {
    margin-top: 20px;
}

main {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.feature {
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 20px;
    flex: 1 1 30%;
    text-align: center;
}

.feature h2 {
    color: #c33764;
}

.why-us {
    background: #fff0f5;
    padding: 40px;
    text-align: center;
    margin-bottom
