body {
    background-color: #f8f9fa;
    font-family: 'Arial', sans-serif;
    transition: background 0.3s ease-in-out;
}

.container {
    max-width: 700px;
    animation: fadeIn 0.8s ease-in-out;
}

.card {
    border-radius: 12px;
    padding: 20px;
    background: #ffffff;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.02);
}

h2, h4 {
    color: #343a40;
    text-align: center;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.logo-container {
    text-align: center;
    margin-bottom: 15px;
}

.logo-container img {
    max-width: 120px;
    height: auto;
}

.security-message {
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    color: red;
    margin-bottom: 15px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.form-group {
    flex: 1;
    min-width: 48%;
    margin-bottom: 15px;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    font-weight: bold;
    transition: background 0.3s ease-in-out, transform 0.2s;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.btn-secondary {
    background-color: #6c757d;
    border: none;
    font-weight: bold;
    transition: background 0.3s ease-in-out, transform 0.2s;
}

.btn-secondary:hover {
    background-color: #5a6268;
    transform: scale(1.05);
}

.d-none {
    display: none;
}

.alert {
    text-align: center;
    font-size: 1.2rem;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}


#quoteSummary {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}

#quoteSummary p {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

#quoteSummary i {
    margin-right: 8px;
    color: #007bff;
    font-size: 1.2rem;
}

.text-success {
    font-size: 1.5rem;
}

.summary-box i {
    margin-right: 8px;
    color: #007bff;
}