@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@400;500;600;700;800&display=swap');

.spc-services-wrap,
.spc-services-wrap * {
    box-sizing: border-box;
}

.spc-services-wrap {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 56px 28px;
    padding: 18px 10px;
    font-family: "Poppins", Arial, sans-serif;
}

.spc-service-card {
    background: #08090a;
    border: 5px solid #f26b28;
    border-radius: 12px;
    min-height: 415px;
    padding: 22px 20px 27px;
    color: #ffffff;
    box-shadow: none;
}

.spc-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 68px;
    height: 20px;
    background: #ffffff;
    color: #f26b28;
    font-size: 8px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .2px;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.spc-title {
    font-family: "Bebas Neue", Impact, sans-serif;
    color: #f26b28;
    font-size: 29px;
    line-height: .92;
    letter-spacing: .4px;
    margin: 0 0 4px;
    text-transform: uppercase;
    font-weight: 400;
}

.spc-desc {
    max-width: 515px;
    font-size: 11px;
    line-height: 1.22;
    color: #ffffff;
    margin: 0 0 16px;
    font-weight: 500;
}

.spc-section-title {
    display: inline-block;
    color: #f26b28;
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    border-bottom: 1px solid #f26b28;
    padding-bottom: 2px;
    margin-bottom: 3px;
}

.spc-price-list {
    width: 100%;
    margin-bottom: 13px;
}

.spc-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 35px;
    border-bottom: 1px solid rgba(242,107,40,.8);
}

.spc-price-row span {
    color: #ffffff;
    font-size: 9px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}

.spc-price-row strong {
    font-family: Georgia, "Times New Roman", serif;
    color: #f26b28;
    font-size: 24px;
    line-height: 1;
    font-weight: 400;
}

.spc-package-heading {
    border-bottom: none;
    margin-bottom: 11px;
}

.spc-packages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}

.spc-package-box {
    min-height: 43px;
    border: 1px solid rgba(242,107,40,.95);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 7px 6px 6px;
    color: #ffffff;
    text-align: center;
}

.spc-package-top {
    color: #ffffff;
    font-size: 7px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
}

.spc-package-top span {
    color: #f26b28;
    margin-left: 2px;
}

.spc-package-price {
    font-family: Georgia, "Times New Roman", serif;
    color: #f26b28;
    font-size: 17px;
    line-height: 1.05;
    font-weight: 400;
    margin-top: 5px;
}

.spc-book-btn {
    width: 79%;
    min-height: 34px;
    margin: 0 auto;
    border-radius: 4px;
    background: #f26b28;
    color: #000000 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    font-size: 9px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    transition: opacity .2s ease, transform .2s ease;
}

.spc-book-btn:hover {
    opacity: .9;
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .spc-services-wrap {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .spc-service-card {
        padding: 22px 18px 26px;
    }

    .spc-title {
        font-size: 27px;
    }
}

@media (max-width: 420px) {
    .spc-packages {
        grid-template-columns: 1fr;
    }

    .spc-book-btn {
        width: 100%;
    }
}
