.complimentary-section {
    width: 100%;
    padding: 120px 0;
    padding-top: 0;
    display: flex;
    justify-content: center;
    background: linear-gradient(180deg, #F9FAFB 0%, #FEF2F2 80%);
}

.complimentary-container {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.complimentary-card {
    background-color: white;
    border-radius: 40px;
    padding: 80px 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 936px;
    display: flex;
    justify-content: center;
    text-align: center;
}

.complimentary-content {
    width: 100%;
}

.section-badge {
    background-color: #FEF2F2;
    color: #590401;
    height: 32px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 32px;
    border: 1px solid rgba(89, 4, 1, 0.1);
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-title .highlight {
    color: #590401;
}

.section-description {
    font-size: 18px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 16px;

    margin-left: auto;
    margin-right: auto;
}

.cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-btn {
    background-color: #590401;
    color: #FFFFFF;
    border: none;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(89, 4, 1, 0.2);
}

.primary-btn:hover {
    background-color: #7A0602;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(89, 4, 1, 0.3);
}

.secondary-btn {
    background-color: #FFFFFF;
    color: #590401;
    border: 1.5px solid rgba(89, 4, 1, 0.4);
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background-color: #FEF2F2;
    border-color: #590401;
    transform: translateY(-2px);
}

.cta-link {
    text-decoration: none;
}

@media (max-width: 768px) {
    .complimentary-section {
        padding: 40px 0;
    }

    .complimentary-card {
        padding: 40px 20px;
        border-radius: 24px;
    }

    .section-title {
        font-size: 45px;
        line-height: 1.1;
    }

    .section-description {
        font-size: 16px;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }
}