/* Hakkımızda Sayfası Logo Stilleri */
.about-logo-container {
    text-align: center;
    margin: 2rem auto;
    padding: 1rem;
    max-width: 300px;
}

.about-logo {
    max-width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.about-title {
    margin-top: 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
    color: #2563EB;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.about-subtitle {
    font-size: 1.1rem;
    color: #6B7280;
    margin-top: 0.5rem;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .about-logo-container {
        max-width: 250px;
        margin: 1.5rem auto;
    }

    .about-logo {
        max-height: 120px;
    }

    .about-title {
        font-size: 1.5rem;
    }

    .about-subtitle {
        font-size: 1rem;
    }
}

/* Logo Animasyonu */
@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-logo-container {
    animation: logoFadeIn 0.8s ease-out;
} 