@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&family=Roboto:wght@400;500&display=swap');

body {
    background-color: #e9ecef;
    font-family: 'Roboto', sans-serif;
    color: #333333;
}

.ftrs-container {
    max-width: 700px;
    margin: 40px auto;
    padding: 20px;
    background: #f0f2f5;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.ftrs-title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #1a2a53;
    margin-bottom: 25px;
    font-size: 2.2em;
}

.ftrs-form {
    padding: 30px;
}

.ftrs-section {
    background: white;
    padding: 25px;
    margin: 20px 0;
    border-radius: 8px;
    border-left: 5px solid #848068;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.ftrs-section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #1a2a53;
    margin-top: 0;
}

.ftrs-field {
    margin: 20px 0;
    overflow: visible;
    position: relative;
}

.ftrs-field label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
}

.ftrs-field input,
.ftrs-field select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ftrs-field input:focus,
.ftrs-field select:focus {
    outline: none;
    border-color: #1a2a53;
    box-shadow: 0 0 0 3px rgba(26, 42, 83, 0.1);
}

.ftrs-field input[type="number"] {
    -webkit-appearance: none;
    -moz-appearance: textfield;
    appearance: none;
}

.ftrs-button {
    width: 100%;
    background: #1a2a53;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.ftrs-button:hover {
    background: #2a3e6a;
    transform: translateY(-2px);
}

.ftrs-button:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: translateY(0);
}


/* Results Page Styling */
.ftrs-recommendations {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.ftrs-header {
    text-align: center;
    margin-bottom: 30px;
}

.ftrs-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #1a2a53;
    font-size: 2.5em;
    margin-bottom: 5px;
}

.ftrs-header .highlight {
    color: #007bff;
}

.ftrs-subtitle {
    font-style: italic;
    color: #777;
    font-size: 3px;
}

.ftrs-section-rec {
    background: #ffffff;
    padding: 25px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.ftrs-section-rec h3 {
    color: #1a2a53;
    font-family: 'Montserrat', sans-serif;
    border-bottom: 2px solid #848068;
    padding-bottom: 10px;
    margin-top: 0;
}

.ftrs-section-rec p {
    line-height: 1.6;
}

.ftrs-section-rec strong {
    color: #848068;
    font-weight: 500;
}

.ftrs-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-style: italic;
    color: #777;
    font-size: 0.8em;
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}