/* ============================= CULTURE & PEOPLE SECTION ============================= */
.culture-people-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}

.culture-people-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(153, 174, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.culture-people-wrapper {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.culture-people-image {
    position: relative;
}

.culture-img {
    width: 100%;
    max-width: 550px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* Desktop Only - Image Hover */
@media (min-width: 1025px) {
    .culture-img:hover {
        transform: scale(1.05) rotate(2deg);
        box-shadow: 0 25px 70px rgba(153, 174, 0, 0.25);
    }
}

.culture-people-content {
    padding: 20px 0;
}

.culture-people-title {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.culture-people-title .highlight-text {
    color: #99AE00;
    background: linear-gradient(120deg, #99AE00, #b0cb1f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.culture-people-text {
    font-family: "Sequel Sans", sans-serif;
    font-size: 20px;
    line-height: 1.8;
    color: #555555;
    margin: 0;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .culture-people-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .culture-people-image {
        order: 2;
        text-align: center;
    }

    .culture-people-content {
        order: 1;
    }

    .culture-people-title {
        font-size: 48px;
        text-align: center;
    }

    .culture-people-text {
        font-size: 18px;
        text-align: center;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .culture-people-section {
        padding: 60px 0;
    }

    .culture-people-title {
        font-size: 36px;
    }

    .culture-people-text {
        font-size: 16px;
        line-height: 1.6;
    }

    .culture-img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .culture-people-section {
        padding: 40px 0;
    }

    .culture-people-title {
        font-size: 28px;
    }

    .culture-people-text {
        font-size: 15px;
    }
}
/* ============================= END CULTURE & PEOPLE SECTION ============================= */
