body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    background: lightpink;
    color: white;
    padding: 20px;
    width: 100%;
}

header img {
    width: 80px;
    height: auto;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 10px;
}

nav a {
    text-decoration: none;
    padding: 10px 15px;
    background: palevioletred;
    color: white;
    border-radius: 5px;
    transition: background 0.3s;
}

nav a:hover, nav a:focus {
    background: lightpink;
}

main {
    width: 80%;
    max-width: 1000px;
    margin: 20px auto;
}


#c {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

.left-img, .right-img {
    width: 150px;
}

.left-img img, .right-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.text-content {
    flex: 1;
    text-align: justify;
}

#a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 80%;
    margin: auto;
    padding: 20px;
}

#a h3 {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

video {
    width: 50%;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}


#b {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;

    margin: 20px auto;
}

.lista {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 20px;
}

.lista li {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffe4e1;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgb(201, 199, 199);
}

.lista img {
    width: 17px;
    height: 17px;
}

footer {
    background: lightpink;
    color: white;
    padding: 10px;
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

#sfinks-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 80%;
    margin: 50px auto;
    padding: 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 10px 30px grey;
}


.text-box {
    width: 55%;
    text-align: left;
}

.text-box h2 {
    font-size: 28px;
    color: palevioletred;
    font-weight: bold;
    margin-bottom: 15px;
}

.text-box p {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 10px;
}


.video-box {
    width: 40%;
    text-align: center;
}

.video-box video {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.video-box video:hover {
    transform: scale(1.05);
}


@media (max-width: 900px) {
    #sfinks-info {
        flex-direction: column;
        text-align: center;
    }

    .text-box, .video-box {
        width: 100%;
    }

    .text-box {
        margin-bottom: 20px;
    }
}


@media (max-width: 768px) {
    #c {
        flex-direction: column;
        text-align: center;
    }

    .left-img, .right-img {
        width: 100%;
        max-width: 200px;
    }

    .text-content {
        text-align: center;
    }

    .lista {
        flex-direction: column;
    }
}
