.about-section {
    background-color: var(--second-bg);
    padding: 40px 2%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-container {
    max-width: 100%;
    display: flex;
    gap: 50px;
    align-items: center;
}

/* Yazı Alanı */
.about-content {
    flex: 1;
}

.sub-title {
    color: var(--title);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 10px;
}

.main-title {
    color: var(--title);
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.description {
    color: var(--title);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.about-btn {
    display: inline-block;
    background-color: var(--title);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.about-btn:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

/* Resim Alanı */
.about-image {
    flex: 1;
    position: relative;
}

.image-wrapper {
    position: relative;
    z-index: 1;
}

.image-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Arkadaki dekoratif kutu */
.image-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--title);
    top: 20px;
    left: 20px;
    z-index: -1;
    border-radius: 20px;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        order: 2;
        margin-top: 40px;
    }
}
