/* Genel Ayarlar */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Üst Menü (Header) */
header {
    background: #ffffff;
    color: #333;
    padding-top: 20px;
    min-height: 70px;
    border-bottom: 3px solid #ff9900; /* Qibbo Press turuncu çizgisi */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Ayarı - Logonu düzgün gösterir */
.logo img {
    height: 60px; /* Logo yüksekliğini sınırlar */
    width: auto;
}

header ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header li {
    display: inline;
    margin-left: 20px;
}

header a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

header a:hover {
    color: #ff9900;
}

/* Dil Butonu Stili */
.lang-btn {
    background-color: #eee;
    padding: 5px 10px;
    border-radius: 5px;
}

/* Hero (Karşılama) Alanı */
.hero {
    background: #333; /* Arka plan rengi */
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 50px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 20px;
}

/* Buton Tasarımı */
.btn {
    display: inline-block;
    background: #ff9900;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn:hover {
    background: #e68a00;
}

/* İçerik Alanı */
.content {
    padding: 50px 0;
    text-align: center;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}