body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #92ffc0, #002661);
}

.button-section {
    margin-top: 50px;
    border: solid 2px black;
    border-radius: 50%;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
    background-color: transparent;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-section a {
    width: 60%;
    height: 60%;
}

.button-section:hover {
    border-color: lavender;
}

.button-section a img {
    width: 100%;
    height: 100%;
}

.main-section {
    margin-top: 50px;
    margin-bottom: 50px;
    background-color: #034C53;
    padding: 40px;
    width: 60%;
    height: auto;
    border: solid 2px black;
    border-radius: 30px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: center;
}

.main-section h1 {
    color: lavender;
    font-weight: bold;
    font-size: 2em;
}

.main-section .subtitle {
    color: lavender;
    font-size: 1.5em;
    margin-top: -10px;
}

.main-section .eshop-info {
    width: 100%;
}

.eshop-info h2 {
    color: lavender;
    font-size: 1.5em;
}

.eshop-info h3 {
    color: lavender;
    font-size: 1.3em;
}

.eshop-info .info, .eshop-info p {
    color: #bbffef;
    font-size: 1.2em;
    line-height: 1.5;
    font-weight: lighter;
}

.eshop-info .info {
    list-style: none;
    margin: 20px 0;
}

.eshop-info img {
    width: 30px;
    margin-bottom: -5px;
}

.eshop-info ul li {
    color: lavender;
    font-size: 1.2em;
    font-weight: bold;
}

.info .reports {
    font-weight: bold;
    color: lavender;
    font-size: 1em;
}

.info .info-item {
    font-size: 1em;
    list-style: none;
    margin: 20px 0;
    line-height: 1.5;
    font-weight: lighter;
    color: #bbffef;
}

.eshop-info .video-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.video-container .video {
    width: 90%;
    border: solid 4px lavender;
    border-radius: 30px;
}

.eshop-info .video-modification {
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
}

.video-modification button {
    border-radius: 8px;
    height: 30px;
    padding: 0 15px;
    border: solid 2px lavender;
    border-radius: 30px;
    background: #034C53;
    color: lavender;
    font-size: 1em;
    cursor: pointer;
}