/* General Reset */
body, html {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    background: #BED5B9;
}

p {
    margin: 0;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.custom-card-row {
    display: flex;
    flex-wrap: wrap;
    gap: 3px; /* jarak antar kolom */
}

.custom-card-col {
    flex: 1 0 calc(17.3% - 10px); /* 20% untuk 5 item, dikurangi padding/gap */
    max-width: calc(17.3% - 10px);
    box-sizing: border-box;
    padding: 5px;
}

.card {
    position: relative;
    border-radius: 35px;
    box-shadow: 0 8px 25px rgba(44, 44, 46, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background-color: white;
    white-space: nowrap;
}

.kode-jasa, .nomor {
    font-family: "Anton", sans-serif;
    font-style: normal;
    letter-spacing: 3px;
}

.area-name {
    letter-spacing: 2px;
    font-weight: 700;
}

/* Font Sizes */
.header span{
    font-size: 6rem;
}

.footer span{
    font-size: 3rem;
}

.kode-jasa {
    font-size: 4rem;
}

.nomor {
    font-size: 7rem;
}

.area-name {
    font-size: 1.5rem;
}

/* Gambar Daun */
.daun-bawah, .daun-atas {
    position: absolute;
}

@media (min-width: 1024px) and (max-width: 2999px) {
    .header span {
        font-size: 4rem;
    }

    .footer span {
        font-size: 2rem;
    }

    .kode-jasa {
        font-size: 2rem;
    }

    .nomor {
        font-size: 4rem;
    }

    .area-name {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }

    .card {
        margin: 70px auto;
        padding: 10px 20px 20px 20px;
        border-radius: 20px;
    }

    .daun-atas {
        width: 110px;
        top: 210px;
        right: 55px;
        rotate: -5deg;
    }

    .daun-bawah {
        width: 110px;
        bottom: 172px;
        left: 40px;
    }
}