/* Genel Sıfırlama ve Temel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000; /* Siyah arkaplan */
    color: #ffffff; /* Beyaz yazı rengi */
    font-family: 'Poppins', sans-serif; /* Modern ve okunaklı bir font */
    display: flex;
    justify-content: center; /* İçeriği yatayda ortala */
    align-items: center;    /* İçeriği dikeyde ortala */
    min-height: 100vh;      /* Sayfanın en az ekran yüksekliği kadar olmasını sağla */
    text-align: center;       /* Metinleri ortala */
    padding: 20px;
}

/* Tüm içeriği saran ana kutu */
.container {
    max-width: 650px;
    width: 100%;
}
.language-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.language-switcher button {
    background-color: #fbfbfb;
    color: #000;
    border: none;
    padding: 8px 12px;
    margin-left: 5px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.language-switcher button:hover {
    background-color: #0056b3;
    color: #fff;
    transform: scale(1.05);
}
/* Logo Stili */
.logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 40px;
}

/* YENİ EKLENEN DUYURU METNİ STİLİ */
.announcement-text {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 25px;
}

.announcement-text p {
    margin-bottom: 15px; /* Paragraflar arasına boşluk */
}

/* Şirket Adı (İmza) Stili */
.signature {
    font-size: 19px;
    font-weight: 600; /* Kalın yazı */
    margin-bottom: 40px;
    color: #e0e0e0;
}

/* Buton Stili */
.button {
    display: inline-block;
    background-color: #fbfbfb; /* Daha dikkat çekici bir mavi renk */
    color: #010101;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 400;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-bottom: 50px; /* Buton ile iletişim bilgileri arasına boşluk */
}

.button:hover {
    background-color: #0056b3; /* Rengin koyu tonu */
    transform: scale(1.05);
}

/* İletişim Bilgileri Stilleri */
.contact-info {
    border-top: 1px solid #333; /* Üste ayırıcı bir çizgi */
    padding-top: 30px;
    display: flex;
    justify-content: center;
    gap: 40px; /* Mail ve telefon arasına boşluk */
    flex-wrap: wrap; /* Ekrana sığmazsa alt satıra geç */
}

.contact-item {
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item i {
    color: #cccccc;
    margin-right: 10px;
    font-size: 16px;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #bbbbbb;
}

/* Mobil Cihazlar için Stil */
@media (max-width: 480px) {
    .announcement-text {
        font-size: 16px;
    }
    
    .signature {
        font-size: 17px;
    }

    .button {
        padding: 12px 25px;
        font-size: 16px;
    }

    .contact-info {
        flex-direction: column; /* Mobil ekranda iletişim bilgilerini alt alta göster */
        gap: 15px;
        padding-top: 25px;
    }
}