body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: #004f49;
    overflow-y: auto;
}

.content {
    width: 60%;
    margin: 0 auto;
    min-height: 200vh;
    background-color: #013b37;
    position: relative;
    color: #039b8e;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 100px;
    font-size: 30px;
}

/* Language switcher */
.lang-switcher {
    position: absolute;
    top: 20px;
    left: 20px;
}

.lang-switcher button {
    background: none;
    border: 2px solid #007e73;
    color: #007e73;
    font-size: 16px;
    padding: 4px 10px;
    cursor: pointer;
    margin-right: 5px;
}

.lang-switcher button.active {
    background: #007e73;
    color: #013b37;
}

/* Logo */
.logotype {
    text-align: center;
    padding-top: 90px;
    position: relative;
    width: 250px;
    height: 250px;
}

.logotype::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 49%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border: 5px dashed #007e73;
    border-radius: 50%;
    z-index: 1;
}

.logotype img {
    position: relative;
    z-index: 2;
    width: 210px;
}

/* RMINS with broken line */
.up-logo {
    color: #007e73;
    font-size: 44px;
    font-weight: bold;
    text-align: center;
    padding: 15px 0;
    position: relative;
    width: 100%;
}

.up-logo::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 9px;
    background: rgba(0, 126, 115, 0.4);
    z-index: 0; /* ЛИНИЯ СНИЗУ */
}

.up-logo p {
    position: relative;
    z-index: 1; /* ТЕКСТ СВЕРХУ */
    margin: 0;
    padding: 0 20px;
    background: #013b37; /* разрыв линии */
    display: inline-block;
}

/* Subtitle */
.text-logo {
    color: #007e73;
    font-size: 21px;
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
}

/* Links */
.quick-links {
    margin: 90px 0;
    width: 30%;
    text-align: center;
}

.quick-link {
    display: block;
    color: #007e73;
    text-decoration: none;
    font-size: 20px;
    padding: 8px 0;
}

.main-content {
    padding: 40px;
    width: 100%;
}

.last-update {
    margin-top: 80px;
    font-size: 16px;
    text-align: center;
    opacity: 0.7;
}
