body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #ff6b6b;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

header .logo a {
    text-decoration: none;
    color: white;
}

.cta-button {
    background-color: white;
    color: #ff6b6b;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #cc3737;
    color: white;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.container {
    max-width: 100%;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    align-items: center;
}

.container .title {
    font-size: 25px; 
    font-weight: bold;
    text-align: center;
    margin-top: 25px;
}

.container .description {
    max-width: 50%;
    text-align: center;
    margin-top: 15px;
    font-size: 22px;
}

.sections {
    width: 100%;
}

.sections .first-section,
.sections .second-section {
    padding: 40px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px; 
}

.sections .second-section {
    background: linear-gradient(to left, #ff6b6b, #ffa6a6);
    flex-direction: row-reverse; 
    padding: 40px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px; 
    margin-bottom: 25px;
}

.sections .second-section .text {
    max-width: 400px; 
    margin-left: auto;
    color: white;
    text-align: left;
}

.sections .second-section .image {
    flex-basis: auto;
    text-align: left;
}

.sections .first-section {
    background: linear-gradient(to right, #ff6b6b, #ffa6a6);
    margin-bottom: 25px;
}

.first-section .text {
    max-width: 400px; 
    margin-right: auto; 
    color: white;
}

.sections .first-section h1,
.sections .second-section h1 {
    text-align: center;
    font-size: 25px;
}

.first-section .image {
    flex-basis: auto;
    text-align: right; 
}

.first-section .image img,
.second-section .image img {
    max-width: 100%;
    height: 265px;
    border-radius: 10px;
    transition: transform 0.5s;
}

.first-section .image img:hover,
.second-section .image img:hover {
    transform: scale(1.025);
}

.join-now {
    margin-top: 45px;
    margin-bottom: 55px;
}

.join-now a {
    background-color: #cc3737;
    text-decoration: none;
    color: white;
    font-size: 15px;
    padding: 12px;
    padding-block: 14px;
    border-radius: 6px;
    font-weight: bold;
}

.join-now a:hover {
    background-color: #7d2323;
}

span {
    background-color: #400e0e;
}

.feedbacks {
    margin-inline: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.feedbacks .feedback-1 {
    background-color: rgb(236, 237, 237);
    -webkit-box-shadow: 0px 0px 36px -12px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 36px -12px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 36px -12px rgba(0,0,0,0.75);
    padding: 20px;
    width: 300px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-inline: 25px;
}

.feedbacks .feedback-1 img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.feedbacks .feedback-1 .name {
    font-weight: bold;
    margin-bottom: 5px;
    margin-left: 15px;
}

.stars {
    margin-top: -5px;
}

.feedbacks .feedback-1 .description {
    font-size: 14px;
    color: #555;
    text-align: left;
    max-width: 100%;
}

.feedbacks .feedback-1 .text-container {
    display: flex;
    flex-direction: row; 
    align-items: flex-start;
    width: 100%;
}

.feedbacks img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.waiting {
    background-color: #7d2323;
    margin-block: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 24px;
    border-radius: 12px;
}

.waiting p{
    text-align: center;
    color: white;
    font-weight: bold;
}

.waiting a {
    background-color: white;
    text-decoration: none;
    color: #cc3737;
    font-size: 15px;
    padding-inline: 35px;
    padding-block: 11px;
    font-weight: bold;
    border-radius: 3px;
    outline: none;
}

.waiting a:hover {
    background-color: rgb(223, 223, 223);
}

.footer {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color:#888;
    height: auto;
}

.footer p {
    font-size: 11px;
    color: rgb(217, 216, 216);
}

.footer .links {
    display: flex;
    flex-direction: row;
    color: white;
    font-size: 13px;
    margin-bottom: 15px;
}

.footer .links a {
    text-decoration: none;
    color: rgb(217, 216, 216);
    font-size: 15px;
    margin-inline: 15px;
}

@media (max-width: 1217px)
{
    body {
        background: linear-gradient(to right, #ff6b6b, #ffa6a6);
        background-repeat: no-repeat;
    }

    .mobilecontainer {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        width: auto;
    }

    .mobilecontainer .title {
        background-color: #cc3737;
        width: 100%;
        text-align: center;
        color: white;
        margin-bottom: 35px;
    }

    .mobilecontainer .title .things {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
        width: 95%;
    }

    .mobilecontainer .title a {
        background-color: white;
        text-decoration: none;
        color: #cc2323;
        font-size: 15px;
        padding-inline: 21px;
        padding-block: 10px;
        border-radius: 6px;
        font-weight: bold;
    }

    .mobilecontainer .description {
        color: white;
    }

    .mobilecontainer a {
        background-color: white;
        color: #cc3737;
        border-radius: 6px;
    }

    .mobilecontainer .feedbacks {
        display: flex;
        flex-direction: column;
    }

    .informations {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .inforule {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: white;
        padding-inline: 5px !important;
    }

    .inforule h1 {
        margin-bottom: -10px;
    }

    .mobile-section-1{
        background-color: white;
        padding-block: 5px;
        height: 70px;
        -webkit-box-shadow: 0px 0px 36px -12px rgba(0,0,0,0.75);
        -moz-box-shadow: 0px 0px 36px -12px rgba(0,0,0,0.75);
        box-shadow: 0px 0px 36px -12px rgba(0,0,0,0.75);
        margin-bottom: 35px;
        border-radius: 4px;
    }

    .mobile-section-1 h1 {
        color: #cc3737;
        font-size: 14px;
    }

    .footer {
        padding-inline: 15px;
    }

    .footer p {
        margin-bottom: 35px;
        font-size: 12px;
    }

    .footer .links a{
        background-color: #888;
        font-size: 14px;
        margin-bottom: 15px;
    }
}


.faq-container {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.faq-question {
    padding: 15px;
    background-color: #cc3737;
    color: white;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
}

.faq-answer {
    padding: 15px;
    background-color: #fff;
    display: none;
    font-size: 16px;
    border-top: 1px solid #ccc;
    border-radius: 0 0 5px 5px;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, height 0.3s ease;
}

.faq-answer.open {
    display: block;
    opacity: 1;
    height: auto;
}

.faq-container {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: rgb(235, 235, 235);
    border: 1px solid gray;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.faq-question {
    padding: 15px;
    background-color: #cc3737;
    color: white;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
}

.faq-question:hover {
    background-color: darkred;
}

.faq-answer {
    padding: 15px;
    background-color: #fff;
    display: none;
    font-size: 16px;
    border-top: 1px solid #ccc;
    border-radius: 0 0 5px 5px;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, height 0.3s ease;
}

.faq-answer.open {
    display: block;
    opacity: 1;
    height: auto;
}

@media (max-width: 768px) {
    .faq-container {
        max-width: 300px !important;
    }
    .faq-question,
    .faq-answer {
        font-size: 14px !important;
    }

    .feedbacks .feedback-1 {
        width: 250px;
    }
}

@media (min-width: 1300px)
{
    .random-boxes {
        grid-template-columns: repeat(6, 1fr) !important;
    }
}

.random-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 20px;
    margin-block: 30px;
}

.box:hover {
    transform: scale(1.05);
}

.box {
    width: 150px;
    height: 190px;
    background-color: #f2f2f2;
    display: flex;
    justify-content: center;
    flex-direction: column;
    -webkit-box-shadow: 0px 0px 21px 0px rgba(0,0,0,0.46);
    -moz-box-shadow: 0px 0px 21px 0px rgba(0,0,0,0.46);
    box-shadow: 0px 0px 21px 0px rgba(0,0,0,0.46);
    font-size: 16px;
    font-weight: bold;
    border-radius: 10px;
}

.box img {
    height: 120px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.box p {
    font-weight: normal;
    font-size: 15px;
}

.box .online-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: rgb(1, 154, 1);
    border-radius: 50%;
    margin-right: 8px;
    margin-left: 7px; 
}

.box .online {
    margin: 0px;
    margin-top: 15px;
    padding-bottom: 15px;
}

.box .city {
    margin: 0px;
    margin-top: 5px;
    text-align: center;
}

.box .name {
    margin: 0px;
    margin-top: 7px;
    text-align: center;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .random-boxes {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
        margin-top: 0px;
        margin-bottom: 20px;
    }

    .box {
        margin-bottom: 20px;
        height: 200px;
    }
}
