.saffron-survey-wrapper {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Georgia', serif;
    color: #4a3b32;
    background: #fdfbf7;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.saffron-hero {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #1e3a5f 0%, #f4a460 100%);
    color: #fff;
    border-radius: 8px;
    margin-bottom: 2rem;
}
.saffron-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}
.saffron-btn {
    background: #fff;
    color: #1e3a5f;
    border: none;
    padding: 12px 24px;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s;
}
.saffron-btn:hover {
    background: #f0e6d2;
}
.saffron-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 2rem;
}
.form-section {
    background: #fff;
    padding: 2rem;
    border: 1px solid #e0d4c8;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}
.form-section h2 {
    color: #f4a460;
    margin-top: 0;
    margin-bottom: 1rem;
    border-bottom: 2px solid #f0e6d2;
    padding-bottom: 0.5rem;
}
.product-selection {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.saffron-form input[type="text"],
.saffron-form input[type="email"],
.saffron-form input[type="tel"],
.saffron-form select,
.saffron-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: sans-serif;
}
.saffron-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}
.saffron-form .product-selection label {
    display: inline-block;
    font-weight: normal;
    margin-bottom: 0;
}
.saffron-form textarea {
    height: 100px;
}
.trust-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background: #fff8e1;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: bold;
    color: #f4a460;
}
.saffron-thank-you {
    text-align: center;
    padding: 4rem 2rem;
    background: #e8f5e9;
    border-radius: 8px;
    color: #2e7d32;
}
@media (max-width: 600px) {
    .product-selection {
        flex-direction: column;
        align-items: flex-start;
    }
    .product-selection select {
        margin-top: 10px;
    }
}