.clc-1569-container {
    background-color: #F8F5EF;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(10, 25, 47, 0.05);
}

.clc-1569-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.clc-1569-content {
    flex: 1;
}

.clc-1569-visual {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.clc-1569-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.clc-1569-eyebrow {
    color: #F39A2E;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.clc-1569-heading {
    color: #0A192F;
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 24px;
}

.clc-1569-intro {
    color: #5A6A7D;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.clc-1569-highlights {
    display: grid;
    gap: 24px;
    margin-bottom: 40px;
}

.clc-1569-highlight-title {
    color: #0A192F;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
}

.clc-1569-highlight-desc {
    color: #5A6A7D;
    font-family: 'Figtree', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.clc-1569-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.clc-1569-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.clc-1569-btn-primary {
    background-color: #0A192F;
    color: #FFFFFF;
}

.clc-1569-btn-primary:hover {
    background-color: #1B2B44;
}

.clc-1569-btn-secondary {
    background-color: transparent;
    color: #0A192F;
    border: 1px solid #0A192F;
}

.clc-1569-btn-secondary:hover {
    background-color: rgba(10, 25, 47, 0.05);
}

@media (max-width: 991px) {
    .clc-1569-grid {
        flex-direction: column;
    }
    .clc-1569-container {
        padding: 40px;
    }
    .clc-1569-heading {
        font-size: 32px;
    }
    .clc-1569-visual {
        width: 100%;
        min-height: 300px;
    }
}

@media (max-width: 767px) {
    .clc-1569-container {
        padding: 24px;
    }
    .clc-1569-actions {
        flex-direction: column;
    }
    .clc-1569-btn {
        text-align: center;
        width: 100%;
    }
}