/* Hakkımızda Sayfası Stilleri */
.page-title {
    font-size: 3.5rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
    font-family: 'Dancing Script', 'Pacifico', 'Lobster', cursive;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-color);
}

.about-section {
    padding: 2rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-family: 'Dancing Script', 'Pacifico', 'Lobster', cursive;
}

.about-text h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 1rem;
    margin-bottom: 0.8rem;
    background: var(--light-bg);
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
    transition: transform 0.3s;
}

.values-list li:hover {
    transform: translateX(5px);
}

.about-image {
    position: sticky;
    top: 100px;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow);
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        position: relative;
        top: 0;
    }

    .image-placeholder {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .about-section {
        padding: 1.5rem 0;
    }

    .about-content {
        gap: 1.5rem;
    }

    .about-text h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .about-text h3 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        text-align: left;
    }

    .values-list li {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .image-placeholder {
        height: 250px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .about-section {
        padding: 1rem 0;
    }

    .about-content {
        gap: 1.5rem;
    }

    .about-text h2 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .about-text h3 {
        font-size: 1.1rem;
        margin-top: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .about-text p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .values-list li {
        padding: 0.7rem;
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }

    .image-placeholder {
        height: 200px;
        font-size: 1rem;
    }
}
