/* Genel Stiller */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa; /* Açık gri arka plan */
    color: #333; /* Koyu gri metin rengi */
}

/* Header */
header {
    background-color: #fff; /* Beyaz arka plan */
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Gölge ekle */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
    color: #007bff; /* Mavi logo rengi */
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav li {
    margin-left: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease; /* Renk geçişi */
}

nav a:hover {
    color: #007bff; /* Mavi bağlantı rengi */
}

/* Hero Bölümü */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px;
}

.hero-content {
    width: 50%;
}

.hero-content h1 {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
}

.primary-button {
    background-color: #007bff; /* Mavi */
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Arka plan rengi geçişi */
}

.primary-button:hover {
    background-color: #0056b3; /* Daha koyu mavi */
}

.secondary-button {
    background-color: transparent;
    color: #007bff; /* Mavi */
    padding: 15px 30px;
    border: 1px solid #007bff; /* Mavi çerçeve */
    border-radius: 5px;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease; /* Renk ve çerçeve rengi geçişi */
}

.secondary-button:hover {
    color: #0056b3; /* Daha koyu mavi */
    border-color: #0056b3; /* Daha koyu mavi çerçeve */
}

.hero-image {
    width: 40%;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px; /* Köşeleri yuvarlat */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Gölge ekle */
}

/* Hizmetler Bölümü */
#hizmetler {
    padding: 80px;
    text-align: center;
}

#hizmetler h2 {
    font-size: 2em;
    margin-bottom: 40px;
}

.service-cards {
    display: flex;
    justify-content: space-around