/* style.css */
.triva-cta-wrapper-19fb5c58 {
    background-color: #081B33;
    padding: 100px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

.triva-cta-heading-19fb5c58 {
    font-family: 'Playfair Display', serif;
    color: #F5F1E8;
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.triva-cta-subheading-19fb5c58 {
    font-family: 'Poppins', sans-serif;
    color: #D8D0C3;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.triva-cta-buttons-19fb5c58 {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.triva-cta-btn-19fb5c58 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 40px;
    border-radius: 40px;
    border: 2px solid #C8A86B;
    color: #C8A86B;
    background: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.triva-cta-btn-19fb5c58:hover {
    background: #C8A86B;
    color: #081B33;
    transform: translateY(-2px);
}

@media(max-width: 768px) {
    .triva-cta-wrapper-19fb5c58 {
        padding: 80px 20px;
    }
    .triva-cta-heading-19fb5c58 {
        font-size: 32px;
    }
    .triva-cta-subheading-19fb5c58 {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .triva-cta-buttons-19fb5c58 {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    .triva-cta-btn-19fb5c58 {
        width: 100%;
        box-sizing: border-box;
    }
}