/* Genel Stil */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2); /* Açık gri ve mavi tonları */
    color: #333; /* Koyu gri metin rengi */
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 20px;
}

/* Logo Stili */
.logo {
    margin-bottom: 30px;
}

.logo img {
    max-width: 450px; /* Logonun genişliği */
    height: auto;
}

.content {
    background: rgba(255, 255, 255, 0.9); /* Beyaz arka plan (biraz şeffaf) */
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); /* Hafif gölge */
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #444; /* Başlık rengi */
}

p {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.9;
    color: #555; /* Açık gri metin rengi */
}

.contact-info {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-card {
    background: rgba(255, 255, 255, 0.9); /* Beyaz arka plan (biraz şeffaf) */
    padding: 20px;
    border-radius: 10px;
    flex: 1;
    min-width: 250px;
    text-align: left;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); /* Hafif gölge */
}

.contact-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 1); /* Tam opak beyaz */
}

.contact-card i {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #6a11cb; /* Mor ikon rengi */
}

.contact-card h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 600;
    color: #444; /* Başlık rengi */
}

.contact-card p {
    font-size: 1em;
    margin: 10px 0;
    opacity: 0.9;
    color: #555; /* Açık gri metin rengi */
}

.contact-card a {
    color: #6a11cb; /* Mor link rengi */
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-card a:hover {
    opacity: 0.8;
}

/* ... Önceki CSS Kodları Aynı Kalacak ... */

/* Yeni Footer Stili */
.site-footer {
    margin-top: 30px;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 0px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.footer-item i {
    color: #6a11cb;
    font-size: 1.2em;
}

.footer-item a {
    color: #6a11cb;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-item a:hover {
    opacity: 0.8;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-item {
        flex-direction: column;
    }
}