/* Quote Button Styles */
.quote-button-container {
    margin: 20px 0;
    text-align: center;
}

.quote-button {
    display: inline-block;
    background-color: #0047ab;
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    margin: 10px 0;
}

.quote-button:hover {
    background-color: #003d8f;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.quote-button i {
    margin-right: 8px;
}

/* Highlighted Quote Button */
.quote-button-highlighted {
    background-color: #ff6b00;
    font-weight: 700;
    padding: 14px 28px;
    font-size: 18px;
}

.quote-button-highlighted:hover {
    background-color: #e05f00;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .quote-button {
        display: block;
        width: 100%;
        text-align: center;
    }
}
