/* Genel stil ayarları */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Logo Stil Ayarları */
.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 170px;
    height: 170px;
}

/* Sayfa Başlıkları ve Tanıtım */
header {
    text-align: center;
    margin-top: 200px;  /* Başlık için üstten boşluk */
}

header h1 {
    font-size: 36px;
    color: #333;
}

header p {
    font-size: 18px;
    color: #555;
}

/* Hizmetler Bölümü */
#services {
    background-color: #fff;
    padding: 20px;
    margin-top: 50px;
    text-align: center;
}

#services h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.service {
    background-color: #f9f9f9;
    margin: 15px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.service h3 {
    font-size: 22px;
    color: #333;
}

.service p {
    font-size: 16px;
    color: #555;
}

/* Ürün Satışı ve Pazarlama */
#products {
    background-color: #f4f4f4;
    padding: 20px;
    text-align: center;
    margin-top: 30px;
}

#products h2 {
    font-size: 28px;
}

#products p {
    font-size: 16px;
    color: #555;
}

/* Hakkımızda Bölümü */
#about {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    margin-top: 30px;
}

#about h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

#about p {
    font-size: 16px;
    color: #555;
}

/* Vizyon ve Misyon Bölümü */
#vision-mission {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background-color: #f9f9f9;
    margin-top: 30px;
}

#vision-mission div {
    width: 45%;
}

#vision-mission h2 {
    font-size: 24px;
}

#vision-mission p {
    font-size: 16px;
    color: #555;
}

/* İletişim Bölümü */
#contact {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    margin-top: 30px;
}

#contact h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

#contact p {
    font-size: 16px;
    color: #555;
}

/* Sayfa Sonu */
footer {
    background-color: #333;
    color: white;
    padding: 10px;
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0;
}
