/* Section */
.local-talent {
    background: #ecf2fd;
    padding: 100px 20px;
}

.local-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Left */
.local-content {
    flex: 1;
}

.local-title {
    font-size: 48px;
    color: #003451;
    line-height: 1.2;
    margin-bottom: 20px;
}

.local-text {
    font-size: 18px;
    color: #2f4f60;
    line-height: 1.8;
    max-width: 480px;
}

/* Right Image */
.local-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.local-image img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
}

/* 📱 Responsive */
@media (max-width: 992px) {
    .local-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .local-text {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .local-title {
        font-size: 32px;
    }

    .local-text {
        font-size: 16px;
    }
}
