.alternating-section {
    padding: 50px 2%;
    overflow: hidden;
}

.alt-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
    gap: 50px;
}

/* İkinci satırı ters çeviren sihirli kod */
.alt-row.reverse {
    flex-direction: row-reverse;
}

.alt-image,
.alt-text {
    flex: 1;
}

.alt-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.alt-image img:hover {
    transform: scale(1.02);
}

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

.alt-text h2 {
    font-size: 2.2rem;
    color: var(--title);
    margin-bottom: 20px;
    line-height: 1.2;
}

.alt-text p {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 30px;
}

.alt-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--title);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.alt-btn:hover {
    background-color: var(--accent);
}

/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
    .alt-row,
    .alt-row.reverse {
        flex-direction: column; /* Mobilde her şey alt alta */
        text-align: center;
        margin-bottom: 60px;
    }

    .alt-text {
        margin-top: 30px;
    }
}
