/* Genel Ayarlar ve Font */
body {
    font-family: 'Roboto', sans-serif; /* HTML'de eklediğimiz fontu kullanıyoruz */
    background-color: #f4f4f4; /* Açık gri arka plan */
    color: #333; /* Koyu gri yazı rengi */
    display: flex;
    justify-content: center; /* İçeriği yatayda ortala */
    align-items: center; /* İçeriği dikeyde ortala */
    min-height: 100vh; /* Tam ekran yüksekliği */
    margin: 0;
    padding: 20px;
}

/* Ana Kapsayıcı */
.container {
    background-color: #fff; /* Beyaz kutu arka planı */
    padding: 40px;
    border-radius: 12px; /* Köşe yuvarlaklığı */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Hafif gölge */
    max-width: 600px; /* Maksimum genişlik */
    text-align: center;
    width: 100%;
}

/* Logo Alanı */
.logo-area {
    margin-bottom: 20px;
}

.logo {
    max-width: 150px; /* Logonuzun boyutuna göre ayarlayın */
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Başlıklar */
h1 {
    color: #ffc107; /* Kartvizitteki sarı renge yakın bir renk */
    font-size: 2em;
    margin-bottom: 10px;
}

h2 {
    color: #555;
    font-size: 1.4em;
    margin-bottom: 30px;
}

h3 {
    color: #333;
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.2em;
}

/* Açıklama Metni */
.description {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Çizgi Ayırıcı */
hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 30px 0;
}

/* İletişim Listesi */
.contact-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.contact-info li {
    margin-bottom: 8px;
    font-weight: 500;
}

/* Link Stili */
a {
    color: #007bff; /* Mavi link rengi */
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Alt Metin */
.footer-text {
    font-style: italic;
    color: #777;
    margin-top: 20px;
}