.cs-623-wrapper {
    display: flex;
    flex-wrap: wrap;
    min-height: 600px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.cs-623-left {
    flex: 1 1 40%;
    min-width: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding: 40px;
}

.cs-623-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
}

.cs-623-info-box {
    position: relative;
    z-index: 2;
    background: rgba(30, 40, 60, 0.85);
    padding: 30px;
    border-radius: 8px;
    width: 100%;
    color: #fff;
}

.cs-623-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cs-623-contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
}

.cs-623-contact-list li:last-child {
    margin-bottom: 0;
}

.cs-623-icon {
    color: #d4a35d;
    margin-right: 15px;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.cs-623-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.cs-623-right {
    flex: 1 1 60%;
    padding: 50px;
}

.cs-623-heading {
    font-size: 28px;
    color: #0b1a30;
    margin-bottom: 15px;
    font-weight: 700;
}

.cs-623-subtitle {
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cs-623-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.cs-623-form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
.cs-623-form-row .cs-623-form-group {
    margin-bottom: 0;
}

.cs-623-form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #0b1a30;
    font-size: 14px;
}

.cs-623-form-group input,
.cs-623-form-group textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none;
    font-size: 14px;
    background: transparent;
}

.cs-623-form-group input:focus,
.cs-623-form-group textarea:focus {
    border-bottom-color: #d4a35d;
}

.cs-623-submit-btn {
    background: #d4a35d;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.cs-623-submit-btn:hover {
    background: #c3924c;
}

@media (max-width: 768px) {
    .cs-623-form-row {
        flex-direction: column;
        gap: 0;
    }
    .cs-623-form-row .cs-623-form-group {
        margin-bottom: 20px;
    }
    .cs-623-left, .cs-623-right {
        flex: 1 1 100%;
    }
    .cs-623-right {
        padding: 30px 20px;
    }
}