.presentation-section {
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.section-content.reverse {
    flex-direction: row-reverse;
}

.polaroid-frame {
    position: relative;
    width: 45%;
    transform: rotate(-3deg);
    padding: 15px;
    background-color: rgba(254, 222, 123, 0.25);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.polaroid-frame:hover {
    transform: rotate(-3deg) scale(1.05);
}

.polaroid-frame.polaroid-right {
    transform: rotate(3deg);
    background-color: rgba(254, 222, 123, 0.25);
}

.polaroid-frame.polaroid-right:hover {
    transform: rotate(3deg) scale(1.05);
}

.section-image {
    width: 100%;
    border-radius: 6px;
    display: block;
    object-fit: cover;
}

.polaroid-border {
    position: absolute;
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    color: white;
    pointer-events: none;
}

.section-text {
    flex: 1;
}

.section-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--perigord-black);
    margin-bottom: 2rem;
    font-weight: 800;
    padding-bottom: 0.5rem;
    display: inline-block;
    background: linear-gradient(transparent 65%, rgba(254, 222, 123, 0.4) 65%);
    background-size: 100% 100%;
    line-height: 1.3;
    padding: 0 0.3rem;
    border-radius: 4px;
}

.section-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 1.2rem;
}

.section-text .highlight {
    font-weight: 600;
    background-color: rgba(254, 222, 123, 0.4);
    padding: 0.1em 0.3em;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .presentation-section {
        padding: 2rem 1rem;
    }

    .section-content,
    .section-content.reverse {
        flex-direction: column;
    }

    .polaroid-frame {
        width: 90%;
        margin: 0 auto;
    }
}
