@font-face {
    font-family: 'Freigeist-Regular';
    src: url('font/Freigeist-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
}

.main-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.div1 {
    text-align: left;
    margin: 20px 20px 20px 20px;
}

.div1 p {
    color: #787571;
    font-family: 'Freigeist-Regular', sans-serif;
    font-size: 38px;
    margin: 0 0 0 0;
}

.div2 {
    background-image: url('images/price-div2.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 26px 26px 26px 26px;
    margin: 20px 20px 20px 20px;
    width: auto;
    height: 500px;
    font-family: 'Freigeist-Regular', sans-serif;
    position: relative;
}

.div3 {
    background-image: url('images/price-div3.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 26px 26px 26px 26px;
    margin: 20px 20px 20px 20px;
    width: auto;
    height: 300px;
    font-family: 'Freigeist-Regular', sans-serif;
    position: relative;
    padding: 50px;
    overflow: hidden;
}

.div3-content h2 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.4;
}

.btn {
    background-color: #EEEAE7;
    border: none;
    transition: 0.3s;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 10px;
    height: 40px;
    width: 40%;
    border-radius: 13px;
    cursor: pointer;
    font-family: 'Freigeist-Regular', sans-serif;
    font-size: 18px;
    align-self: end;
    margin-top: 80px;
}

.btn span {
    text-align: left;
    color: #787571;
    font-weight: 400;
    font-family: 'Freigeist-Regular', sans-serif;
}

.btn img {
    width: 14px;
    height: 14px;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 30px;
}

.category {
    margin-bottom: 28px;
}

.category h2 {
    font-size: 28px;
    font-weight: 300;
    text-transform: uppercase;
    color: #787571;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.service {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #AEA39C;
}

.service:first-child {
    border-top: none;
}

.service-name {
    font-size: 20px;
    color: #AEA39C;
    flex: 1;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: #787571;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.price::selection {
    background: transparent;
}


.mobile{
    display: none;
}

@media (max-width: 1024px) {
    .mobile{
        display: block;
    }

    .desktop{
        display: none;
    }

    .main-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
        padding: 20px;
    }

    .div1 {
        margin: 0;
        text-align: center;
    }

    .div1 p {
        font-size: 28px;
    }

    .div2 {
        background-image: url('images/price-div2-mob.png');
        width: auto;
        height: 400px;
    }

    .div3 {
        background-image: url('images/price-div3-mob.png');
        height: 200px;
        padding: 50px 10px 50px 10px;
    }

    .div3-content {
        width: 100%;
    }

    .category h2 {
        font-size: 20px;
    }

    .service-name {
        font-size: 16px;
    }

    .price {
        font-size: 16px;
    }

    .btn {
        height: 50px;
        width: 100%;
        margin-top: 80px;
        margin-left: 0;
        margin-right: 0;
    }

    .btn span{
        font-size: 15px;
        width: 100%;
    }
}