body {
    background-color: hsl(27, 41%, 15%);
}







#servicesMenu {
    padding: 60px 20px 0px;
}







#titleRow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 90px;
}

#titleRow img {
    height: 20px;
}

#titleRow h1 {
    color: hsl(48, 100%, 50%);
    margin: 0px 28px 7px;
    font-size: 55px;
    line-height: 65px;
}

@media (max-width: 1300px) {
    #titleRow img {
        height: 17px;
    }

    #titleRow h1 {
        font-size: 50px;
        line-height: 57px;
    }
}

@media (max-width: 1000px) {
    #titleRow img {
        display: none;
    }

    #titleRow {
        margin-bottom: 75px;
    }
}

@media (max-width: 800px) {
    #servicesMenu {
        padding-top: 40px;
    }

    #titleRow h1 {
        font-size: 44px;
        line-height: 50px;
    }
}








#contentsRow {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 100px;
}

#contentsRow button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    width: 240px;
    height: 80px;
    padding: 13px 22px;
    border-radius: 10px;
    color: white;
    border: solid 2px white;
    font-size: 17px;
    line-height: 25px;
    font-style: normal;
    cursor: pointer;
    text-transform: uppercase;
    background-color: transparent;
}

#contentsRow button:hover,
#contentsRow button:focus {
    outline: none;
    box-shadow: 0 0 15px hsl(48, 100%, 50%);
    border-color: hsl(48, 100%, 65%);
    border-width: 3px;
    color: hsl(48, 100%, 65%);
}

#contentsRow button.smallTextBtn {
    font-size: 15px;
    line-height: 24px;
}

#contentsRow button.active {
    background-color: hsl(48, 100%, 65%);
    box-shadow: 0 0 15px hsl(48, 100%, 50%);
    border-color: hsl(48, 100%, 65%);
    color: black;
    font-weight: 600;
}







#prompt {
    text-align: center;
    color: hsl(48, 100%, 65%);
    font-size: 30px;
    margin: 150px 0 200px;
}

.serviceSection {
    display: flex;
    justify-content: center;
    display: none;
}

.serviceSection.active {
    display: flex;
}

.serviceContent {
    max-width: 1500px;
    padding: 30px;
    padding-top: 20px;
    /* border-radius: 10px; */
    /* background-color: rgb(255, 238, 227); */
    background-color: hsl(44, 41%, 95%);
    border: solid 4px hsl(48, 100%, 65%);
    box-shadow: 0 0 20px hsl(48, 100%, 50%);
}

.serviceSection h3 {
    color: black;
    font-size: 45px;
    /* text-shadow: 2px 2px 1px black; */
    margin-bottom: 28px;
}

.textContainer {
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 75px;
}

.textContainer p:not(:last-child) {
    margin-bottom: 15px;
}

.imgContainer {
    font-size: 17px;
    line-height: 26px;
    min-width: 380px;
    max-width: 500px;
    width: 100%;
}

.imgContainer img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 10px;
}

@media (max-width: 800px) {
    .serviceSection h3 {
        font-size: 40px;
        line-height: 49px;
    }

    .textContainer {
        font-size: 17px;
        line-height: 32px;
    }

    .serviceContent {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 500px) {
    .imgContainer {
        min-width: 240px;
        font-size: 15px;
        line-height: 23px;
    }

    .serviceSection h3 {
        font-size: 35px;
        line-height: 43px;
        color: black;
        margin-bottom: 25px;
    }

    .serviceContent {
        padding-left: 15px;
        padding-right: 15px;
    }

    .textContainer {
        font-size: 16px;
        line-height: 34px;
    }

    #servicesMenu {
        padding-left: 5px;
        padding-right: 5px;
    }
}









#pricingRow {
    background-color: hsl(6, 97%, 28%);
    margin: 150px 0;
    padding: 22px 20px 27px;
}

#pricingTitle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 21px;
}

#pricingTitle img {
    height: 17px;
}

#pricingTitle h2 {
    font-size: 35px;
    color: hsl(48, 100%, 50%);
    margin: 0px 21px 4px;
}

#pricingTextContainer {
    display: flex;
    justify-content: center;
}

#pricingTextContainer p {
    font-size: 19px;
    line-height: 28px;
    color: rgb(240, 240, 240);
    max-width: 900px;
}

@media (max-width: 950px) {
    #pricingTitle h2 {
        font-size: 30px;
        margin: 0px 18px 4px;
    }

    #pricingTitle img {
        height: 14px;
    }

    #pricingTextContainer p {
        font-size: 17px;
        line-height: 26px;
    }
}

@media (max-width: 505px) {
    #pricingRow {
        padding: 17px 15px 20px;
    }

    #pricingTitle img {
        display: none;
    }

    #pricingTextContainer p {
        font-size: 16px;
        line-height: 25px;
    }

    #pricingTitle {
        margin-bottom: 16px;
    }
}