/* CONTAINER */
.quote-container {
    max-width: 720px;
    margin: auto;
    padding: 0 20px;
}

/* HERO */
.quote-hero {
    background: linear-gradient(135deg, #0a5ea8, #083d6b);
    color: #ffffff;
    text-align: center;
    padding: 90px 20px;
}

.quote-hero h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.quote-hero p {
    font-size: 18px;
    opacity: 0.95;
}

/* SECTION */
.quote-section {
    padding: 70px 0;
}

/* FORM */
.quote-form {
    background: #ffffff;
    padding: 38px;
    border-radius: 18px;
    box-shadow: 0 14px 35px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #cfdff2;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0a5ea8;
}

/* BUTTON */
.quote-form button {
    width: 100%;
    background: #0a5ea8;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

.quote-form button:hover {
    background: #083d6b;
}

/* NOTE */
.note {
    margin-top: 14px;
    font-size: 13px;
    text-align: center;
    color: #555;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .quote-hero h1 {
        font-size: 30px;
    }
}
