/* Genel Stil */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navbar */
header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav .logo a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
}

nav .nav-links {
    list-style: none;
    display: flex;
}

nav .nav-links li {
    margin-left: 20px;
}

nav .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

/* Hamburger Menu */
.menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

.hero {
    background-color: #4CAF50;
    color: white;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

button {
    background-color: #fff;
    color: #333;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
}

button:hover {
    background-color: #ddd;
}

section {
    padding: 50px 20px;
    text-align: center;
}

section h2 {
    margin-bottom: 30px;
    font-size: 36px;
}

/* Hizmet Kartları */
.services .service-cards {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.services .card {
    background-color: #f4f4f4;
    padding: 20px;
    width: 30%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.services .card h3 {
    margin-bottom: 15px;
}

.services .card p {
    font-size: 16px;
}

/* Contact Form */
.contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.contact input, .contact textarea {
    width: 80%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact button {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

.contact button:hover {
    background-color: #444;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav .nav-links {
        display: none;
    }
    
    .menu-icon {
        display: block;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .services .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .services .card {
        width: 80%;
        margin-bottom: 20px;
    }
    
    .contact input, .contact textarea {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }
}
