/* Tipy page */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    font-family: "Poppins", sans-serif;
}

body {
    width: 100%;
    height: auto;
    background-image: linear-gradient(45deg, #ffffff 0%, #f0f0f0 75%, #d8d8d8 100%);
}

.container {
    max-width: 1300px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
    display: flex;
    justify-content: space-between;
    background: transparent;
    margin-top: -50px;
}

.text-container {
    padding: 250px 150px;
    margin: 80px;
    flex-grow: 1; /* Allow the container to grow and fill the available space */
    background:transparent;
    margin-top: 10px;
    margin-bottom: -150px;
}

.text-container p {
    margin-bottom: 40px;
    font-size: 22px;
    color: #333;
    margin-right: 200px;
}

.text-container ul{
    margin-bottom: 40px;
    font-size: 22px;
    color: #333;
    margin-left: 40px;
}

.title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 60px;
    font-weight: 300;
    border-bottom: 3px solid #222;
    padding-bottom: 10px;
}
.subtitle {
    text-align: left;
    margin-bottom: 20px;
    font-size: 40px;
    font-weight: 200;
}
.info {
    font-weight: normal;
}

.checkbtns{
    color: green;
}
.crossbtn{
    color: red;
}

.iframe {
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3) !important;
}

.service {
    display: inline-flex;
    align-items: center;
    margin-right: 20px;
}

.service input[type="checkbox"] {
    margin-right: 5px;
}

/* Mobile-specific styles */
@media (max-width: 900px) {
    body {
        background-color: #f0f0f0;
    }

    .container {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
        margin-top: 100px;
    }

    .text-container {
        padding: 80px 20px;
        margin: 20px 0;
    }

    .text-container p, .text-container ul {
        font-size: 18px;
        margin: 0 0 20px;
    }

    .title {
        font-size: 40px;
        margin-bottom: 40px;
        border-bottom: 2px solid #222;
        padding-bottom: 5px;
    }

    .subtitle {
        font-size: 28px;
        font-weight: 300;
    }

    .checkbtns, .crossbtn {
        font-size: 24px;
        margin-right: 5px;
    }

    .iframe {
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3) !important;
        max-width: 100%;
    }

    .service {
        display: flex;
        align-items: center;
        margin: 10px 0;
    }
    
    .service input[type="checkbox"] {
        margin-right: 5px;
    }
}