:root {
    --background-color: #EDEEF0;
    --button-bg-color: #D9D9D9;
    --button-selected-bg-color: #5A89B9;
    --text-color: #0A1C34;
    --text-selected-color: #ffffff;
    --stick-bg-color: #0A1C34;
}
.option-toggle .button-wrapper{
    flex:1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
body {
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
}

.service-container {
    display: flex;
    width: 100%;
    height: 60%;
    margin-bottom: 5vh;
}

.service-img-container {
    width: 43%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.service-img-container img{
    border-radius: 6px;
    width: 32vw;
    height: auto;
    margin: 5vh 0;
}

.service-image {
}

.service-about {
    width: 57%;
    display: flex;
    flex-direction: column;
}

.service-name {
    margin: 6% 0 3% 0;
    font-size: 2.8vw;
    font-weight: 500;
   color: #0A1C34;
}

.option-toggle {
    display: flex;
    justify-content: center;
    border-radius: 11px;
    overflow: hidden;
    background-color: var(--button-bg-color);
    margin-bottom: 3%;
    width: fit-content;
    max-width: 80%;
}

.option-button {

    border: none;
    padding: 0.4vh 1vw;
    background-color: var(--button-bg-color);
    color: var(--text-color);
    cursor: pointer;
    font-size: 1.3vw;
    font-weight: 400;
    height: 100%;
    width: 100%;
}
 .option-button:hover{
    background-color: #cfcfcf;
    border-radius: 11px;
    transition: background-color 0.2s ease-out;
}

.option-button.selected {
    background-color: var(--button-selected-bg-color);
    color: var(--text-selected-color);
    height:100%;
    width: 100%;
    transition: background-color 0.3s ease-out, color 0.1s ease-out;
}

.option-toggle .option-button.selected {
    border-radius: 11px;
}
.service-description{
    font-size:  1.4vw;
    font-weight: 300;
    width: 80%;
}

.service-description p{
    text-align: justify;
    line-height: 1.4;
    text-indent: 3vw;
    color:#2E4553;
}
.option-container {
    display: flex;
    flex-direction: column;
}

.stick-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stick {
    width: 89%;
    height: 2px;
    border-radius: 4px;
    background-color: var(--stick-bg-color);
}

.menu {
    display: flex;
    column-gap: 5vw;
    margin: 3% 8% 0;
}

.data-button {
    border: none;
    min-width: 10vw;
    border-radius: 15px;
    padding: 10px 20px;
    background-color: var(--button-bg-color);
    color: var(--text-color);
    cursor: pointer;
    font-size: 1.1vw;
    font-weight: 400;
}
.data-button:hover{
    background-color: #cfcfcf;
    border-radius: 15px;
    transition: background-color 0.2s ease-out;
}
.data-button.selected {
    background-color: var(--button-selected-bg-color);
    color: var(--text-selected-color);
    transition: background-color 0.3s ease-out, color 0.1s ease-out;
}

.description-data,
.deliver-data,
.payment-data {
    display: none;
    width: 60%;
    margin: 3% 8%;
    flex-direction: column;
}

.example {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #5A89B9;
    padding: 4px;
    border-radius: 8px;


}

#example-image {
    width: 100%;

    object-fit: cover;
    border-radius: 8px;
}

.description-data.active,
.deliver-data.active,
.payment-data.active {
    display: flex;
}

.option-container .description{

}
.properties{
    list-style: none;
}
.properties > li {
    margin-bottom: 5vh;

}
.option-container .properties li p {
    font-size: 1.2vw;
    font-weight: 300;
    line-height: 1.8;
    margin-top: 2vh;
     color:#2E4553;

}
.option-container .properties li h3 {
    font-size: 1.5vw;
    font-weight: 500;
    color: #0A1C34;
}

.option-container .properties .sub-properties {
    margin-left: 2vw;
}
.option-container .properties .sub-properties li{
    list-style-type:"– ";
     font-size: 1.2vw;
    font-weight: 300;
    line-height: 1.4;
    margin-top: 2vh;
}



@media (max-width: 768px) {

    .main-container{
        padding: 5% 10% 5% 10%;
        display:flex;
        flex-direction:column;
    }

    .service-container {
        flex-direction: column;
        height: auto;
    }

    .service-img-container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .service-img-container img {
        width: 75vw;
        margin-top: 0;
        margin-bottom: 3vh;
        height: auto;
        object-fit: cover;
    }

    .service-about {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-name {
        font-size: 5vw;
        margin: 10px 0;
        text-align: center;
    }

    .option-toggle {
        display: flex;
        align-items: normal;
        border-radius: 14px;
        background-color: var(--button-bg-color);
        margin-bottom: 3%;
        max-width: 100%;
    }

    .option-toggle .button-wrapper{
        height: auto;
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .option-button {
        text-align: center;
        border: none;
        padding: 5px;
        background-color: var(--button-bg-color);
        color: var(--text-color);
        cursor: pointer;
        font-size: 3vw;
        width: 100%;
    }

    .option-container {
        width: 100%;
        margin-top: 20px;
        align-self: center;
    }

    .service-description{
        width: 100%;
        font-size:  3vw;
    }

    .description-data,
    .deliver-data,
    .payment-data {
        width: 100%;
        margin: 10px 0;
        padding: 0 10px;
        font-size:  3vw;
    }

    .menu {
            flex-direction: row;
            align-items: center;
            justify-content: center;
            row-gap: 10px;
            margin: 20px 0;
    }

    .menu button{
        padding: 10px 10px;
        min-width: 22vw;
        font-size:  3.6vw;
    }

    .data-button {
        width: 80%;
        padding: 10px 0;
    }

    .example-wrapper{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .example {
        width: 80%;
        display: flex;
        justify-content: center;
        align-items: center;
        align-self: center;
    }

    #example-image {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    .properties{
        list-style: none;
    }
    .properties > li {
        margin-bottom: 3vh;
        text-align:justify;
    }
    .option-container .properties li p {
        font-size: 3vw;
        font-weight: 300;
        line-height: 1.8;
        margin-top: 2vh;
    }
    .option-container .properties li h3 {
        font-size: 3.5vw;
        font-weight: 500;
    }

    .option-container .properties .sub-properties {
        margin-left: 2vw;
    }
    .option-container .properties .sub-properties li{
        list-style-type:"– ";
        font-size: 3vw;
        font-weight: 300;
        line-height: 1.4;
        margin-top: 2vh;
    }


}