.quotation-heading {
    font-weight: 500;
    font-size: 45px;
    line-height: 120%;
    text-align: center;
}

.quotation-text {
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
}

.quotation-submit-btn {
    background-color: rgba(31, 57, 101, 1);
}

.quotation-status-valid {
    color: #28A745;
    font-weight: 600;
}

.quotation-result-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 2rem;
    margin: 0;
}

.quotation-result-grid dt,
.quotation-result-grid dd {
    margin: 0;
    padding: 1rem 1.5rem;
}

.quotation-result-grid dt {
    font-weight: 600;
    white-space: nowrap;
}

.quotation-result-grid dt > div {
    white-space: normal;
}

.quotation-result-grid dt:nth-of-type(even),
.quotation-result-grid dd:nth-of-type(even) {
    background-color: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .quotation-heading {
        font-size: 28px;
    }
    .quotation-text {
        font-size: 16px;
    }
}

.quotation-backdrop-blur {
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    background-color: rgba(255, 255, 255, 0.05);
}

.quotation-modal-container {
    background-color: #000000;
    border: 1px solid #374151;
    border-radius: 1rem;
}

.quotation-icon-bg {
    background-color: rgba(127, 29, 29, 0.3);
}

.quotation-text-secondary {
    color: #D1D5DB;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
.animate-fadeIn {
    animation: fadeIn 0.3s ease-out forwards;
}
