.fc-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 20px 24px;
    text-align: center;
}

.fc-header h1 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 12px;
    letter-spacing: 1px;
}

.fc-header p {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.fc {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.fc-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    padding: 40px 48px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fc-row {
    display: flex;
    gap: 20px;
}

.fc-row--half > .fc-field {
    flex: 1 1 0;
    min-width: 0;
}

.fc-row--center {
    justify-content: center;
    margin-top: 8px;
}

.fc-field {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.fc-label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    letter-spacing: 0.2px;
}

.fc-input {
    height: 48px;
    padding: 0 16px;
    font-size: 15px;
    font-family: inherit;
    color: #1f2937;
    background: #f9fafb;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    box-sizing: border-box;
}

.fc-input::placeholder {
    color: #9ca3af;
}

.fc-input:hover {
    border-color: #9ca3af;
    background: #fff;
}

.fc-input:focus {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(255, 214, 0, 0.15);
    background: #fff;
}

.fc-textarea {
    height: auto;
    padding: 14px 16px;
    resize: vertical;
    min-height: 140px;
    max-height: 140px;
    line-height: 1.5;
}

.fc-submit {
    font-family: inherit;
    font-style: italic;
    font-weight: 800;
    font-size: 16px;
    color: #000;
    background: var(--primary-yellow);
    border: none;
    border-radius: 30px;
    padding: 14px 60px;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 3px 10px rgba(255, 214, 0, 0.3);
}

.fc-submit:hover {
    background-color: var(--primary-button-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 140, 0, 0.3);
}

.fc-submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

@media (max-width: 640px) {
    .fc {
        padding: 0 12px 40px;
    }

    .fc-card {
        padding: 24px 20px;
        border-radius: 12px;
        gap: 16px;
    }

    .fc-row--half {
        flex-direction: column;
        gap: 16px;
    }

    .fc-input {
        height: 46px;
        font-size: 16px;
    }

    .fc-submit {
        width: 100%;
        padding: 14px 20px;
    }
}