.cfp-container {
    display: flex;
    background-color: #0b1120; /* Dark blue background */
    color: #ffffff;
    padding: 50px;
    border-radius: 15px;
    gap: 50px;
    align-items: center;
    font-family: 'Roboto', sans-serif; /* Assuming a standard font */
}

.cfp-left-column {
    flex: 1;
    padding-right: 20px;
}

.cfp-right-column {
    flex: 1;
}

.cfp-tag {
    display: inline-block;
    background-color: #1e293b;
    color: #3b82f6; /* Blue accent */
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cfp-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.cfp-description {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cfp-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cfp-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cfp-icon {
    background-color: #1e293b;
    color: #10b981; /* Green/Teal accent */
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
}

.cfp-info-text {
    display: flex;
    flex-direction: column;
}

.cfp-label {
    font-size: 12px;
    color: #94a3b8;
}

.cfp-value {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}

/* Right Column - Form Card */
.cfp-form-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    color: #000000;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.cfp-form-card h3 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 24px;
    color: #0f172a;
}

.cfp-form-group {
    margin-bottom: 20px;
}

.cfp-form-group input,
.cfp-form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #334155;
    background-color: #f8fafc;
    outline: none;
    transition: border-color 0.3s;
    box-sizing: border-box; /* Ensure padding doesn't affect width */
}

.cfp-form-group input:focus,
.cfp-form-group select:focus {
    border-color: #3b82f6;
}

.cfp-submit-btn {
    width: 100%;
    background-color: #0ea5e9; /* Bright Blue */
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cfp-submit-btn:hover {
    background-color: #0284c7;
}

.cfp-message {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
}

.cfp-message.success {
    color: #10b981;
}

.cfp-message.error {
    color: #ef4444;
}

/* Responsive */
@media (max-width: 768px) {
    .cfp-container {
        flex-direction: column;
        padding: 30px;
    }

    .cfp-left-column {
        padding-right: 0;
        margin-bottom: 40px;
    }
}
