/* Container & Variables */
.fx-survey-wrapper {
    --theme-color: #D50000;
    --bg-body: #f7f7f7;
    --bg-card: #ffffff;
    --text-main: #212529;
    --text-second: #071339;
    --text-muted: #6c757d;
    --border-color: #e9ecef;
    
    font-family: inherit;
    line-height: 1.8;
    color: var(--text-main);
    background-color: var(--bg-body);
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.fx-survey-wrapper * {
    box-sizing: border-box;
}

/* Hero Section */
.fx-survey-hero {
    text-align: center;
    padding: 50px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    border-top: 4px solid var(--theme-color);
    margin-bottom: 30px;
}

.fx-survey-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-second);
    margin-top: 0;
    margin-bottom: 15px;
}

.fx-survey-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0;
}

/* Grid Layout */
.fx-survey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

/* Custom Cards */
.fx-survey-card {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fx-survey-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.fx-survey-card h2 {
    font-size: 1.2rem;
    color: var(--theme-color);
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: bold;
}

.fx-survey-card p {
    color: var(--text-muted);
    margin: 0;
    text-align: justify;
}
