#centra-finance-container {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
    max-width: 800px;
    margin: 30px auto;
    padding: 25px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

#centra-finance-container h2 {
    text-align: center;
    color: #1A2B22;
    margin-bottom: 25px;
}

#centra-finance-container h3 {
    color: #1A2B22;
    margin: 25px 0 15px;
    padding-bottom: 6px;
    border-bottom: 1px solid #eee;
}

.calc-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.calc-result {
    background: #175841;
    padding: 16px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
    color: #e8d07b;
    font-size: 16px;
    outline: 3px solid #e8d07b;
}

.btn-proceed {
    display: block;
    width: 100%;
    padding: 14px;
    background: #1A2B22;
    color: #F0E1A1;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s;
}

.btn-proceed:hover {
    background: #16241D;
    transform: translateY(-2px);
}

.form-section {
    margin-bottom: 25px;
}

.form-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    min-height: 44px;
    height: 44px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
}

.form-group textarea {
    height: auto;
    min-height: 120px;
}

.form-group input[type="date"] {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 44px;
    height: 44px;
    box-sizing: border-box;
    display: block;
    -webkit-appearance: none;
    appearance: none;
}

.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.radio-group label {
    font-weight: normal;
    cursor: pointer;
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(178deg, #877431, #F0E1A1);
    color: #212121 !important;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(26, 43, 34, 0.2);
    text-align: center;
    margin: 30px 0;
}



#form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .form-group {
        min-width: 0;
        width: 100%;
    }

    #centra-finance-container {
        padding: 15px;
        margin: 15px;
    }
}

#proceed-to-form {
    display: block;
    width: 100%;
    padding: 14px;
    background: #1A2B22;
    color: #F0E1A1;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    transition: all 0.3s;
}

#proceed-to-form:hover {
    background: #16241D;
    transform: translateY(-2px);
    color: #F0E1A1;
}

/* Form Message Styling */
#form-message {
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
    font-weight: bold;
}

#form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}