.scf-section {
    padding: 60px 20px;
    font-family: var(--scf-font, 'Inter', sans-serif);
}

.scf-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

/* Header */
.scf-header-mobile {
    display: none;
    margin-bottom: 30px;
}

.scf-header-desktop {
    margin-bottom: 40px;
}

.scf-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
    color: var(--scf-title, inherit);
}

.scf-subtitle {
    font-size: 18px;
    color: var(--scf-subtitle, inherit);
}

/* Form Column */
/* Form Column */
/* .scf-form-col { Main area } */

.scf-form-group {
    margin-bottom: 20px;
}

.scf-form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #e5e5e5;
    border-radius: 30px;
    /* Pill shape inputs as in design */
    font-size: 16px;
    background: #fff;
    transition: all 0.2s;
}

.scf-form-control:focus {
    border-color: var(--scf-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

textarea.scf-form-control {
    border-radius: 20px;
    resize: vertical;
    min-height: 120px;
}

/* Error States */
.scf-input-error {
    border-color: #dc3232 !important;
}

.scf-error-msg {
    color: #dc3232;
    font-size: 13px;
    margin-top: 5px;
    display: block;
    margin-left: 15px;
}

/* Submit Button */
.scf-submit-btn {
    background-color: var(--scf-accent);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    width: auto;
    min-width: 200px;
}

.scf-submit-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.scf-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Sidebar Column */
.scf-sidebar-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.scf-card {
    background: #fff;
    border-radius: var(--scf-radius, 12px);
    padding: 30px;
    box-shadow: var(--scf-shadow, 0 5px 20px rgba(0, 0, 0, 0.03));
}

.scf-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.scf-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
    color: #555;
}

.scf-info-icon {
    margin-right: 12px;
    font-size: 18px;
    color: #888;
}

.scf-link {
    color: var(--scf-accent);
    text-decoration: none;
    font-weight: 500;
}

.scf-link:hover {
    text-decoration: underline;
}

.scf-response-note {
    margin-top: 30px;
    font-size: 14px;
    opacity: 0.7;
}

/* Messages */
.scf-message-container {
    margin-top: 20px;
    display: none;
}

.scf-success {
    padding: 15px;
    background: #d4edda;
    color: #155724;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
}

.scf-error {
    padding: 15px;
    background: #f8d7da;
    color: #721c24;
    border-radius: 8px;
    border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 768px) {
    .scf-container {
        grid-template-columns: 1fr;
    }

    .scf-header-desktop {
        display: none;
    }

    .scf-header-mobile {
        display: block;
        text-align: center;
    }

    .scf-submit-btn {
        width: 100%;
    }
}