/* Hakkımızda sayfası için ek stiller */
img {
    border-radius: 28px;
}

.about {
    text-align: center;
    padding: 4rem 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
}

.about.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.about h1 {
    color: #FFD700;
    margin-bottom: 2rem;
}

.about h2 {
    color: #FFD700;
    margin: 1.2rem 0 0.8rem;
    font-size: 1.4rem;
}

.about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.about-media {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.about-media img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.about .cta-button {
    display: block;
    margin: 0 auto;
}

/* Genel stiller index.css'ten devralınır */

.whatsapp-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background-color: #FFD700;
    color: #001f3f;
    border: none;
    padding: 0.9rem 1.2rem;
    border-radius: 35px;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.whatsapp-fixed:hover {
    transform: translateY(-3px);
    background-color: #FFC107;
}