/* Main Card */
.card {
    position: relative;
    margin: 80px auto;
    width: 90%;
    max-width: 1200px;
    min-height: 100vh;
    border-radius: 30px;
    overflow: hidden;
    background-color: #3b220f;
    padding: 60px 60px;
    box-sizing: border-box;
}
.service-icon-list li i {
    color: white;
}
/* Low opacity background image */

/* Keep content above background */
.card * {
    position: relative;
    z-index: 2;
}

/* Heading */
.card .primary-heading {
    text-align: center;
    font-family: "Space Grotesk", sans-serif;
    color: white;
    font-size: 48px;
}

/* Paragraph */
.paragraph {
    font-family: "Space Grotesk", sans-serif;
    color: white;
    font-size: 20px;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 25px;
}

.service-icon-list {
    font-family: "Space Grotesk", sans-serif;
    color: white;
    font-size: 17px;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 25px;
}

/* Bold Text */
.bold,
.service-icon-list h2 {
    font-weight: 700;
    color: white;
}

/* Footer */
.footer-heading {
    text-align: center;
    font-family: "Space Grotesk", sans-serif;
    color: #ffffff;
    margin-top: 50px;
    font-size: 14px;
    line-height: 28px;
}

/* ============================= */
/* Tablet Responsive */
/* ============================= */

@media (max-width: 992px) {
    .card {
        padding: 50px 40px;
        border-radius: 25px;
    }

    .card .primary-heading {
        font-size: 36px;
    }

    .paragraph {
        font-size: 18px;
    }
}

/* ============================= */
/* Mobile Responsive */
/* ============================= */

@media (max-width: 576px) {
    .card {
        margin: 50px auto;
        padding: 35px 20px;
        border-radius: 20px;
    }

    .card .primary-heading {
        font-size: 26px;
    }

    .paragraph {
        font-size: 16px;
        line-height: 1.6;
    }

    .footer-heading {
        font-size: 12px;
    }
}
