/* Quote Page Styles */
body {
    background: url('images/s1.jpeg') no-repeat center center/cover;
    font-family: 'Arial', sans-serif;
}

.container {
    max-width: 500px;
    margin: auto;
}

h2 {
    color: #fff;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.03);
}

.btn-primary {
    background-color: #ff5722;
    border: none;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: #e64a19;
    transform: scale(1.05);
}

.btn-secondary {
    background-color: #444;
    border: none;
    transition: background 0.3s, transform 0.2s;
}

.btn-secondary:hover {
    background-color: #222;
    transform: scale(1.05);
}

input, select, textarea {
    border-radius: 5px;
    padding: 8px;
    width: 100%;
}

textarea {
    resize: none;
}

footer {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
    border-radius: 5px;
}
