* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    background: #2e2b28 url('../assets/background.png') center bottom no-repeat;
    background-size: cover;
}

.page {
    position: relative;
    padding: 210px 50px 400px;
    color: #ffffff;
}

.page::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(35, 32, 30, 0.7);
    z-index: 0;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo-bg {
    position: absolute;
    top: -250px;
    left: -250px;
    width: 560px;
    height: 560px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    overflow: hidden;
}

.logo-bg img {
    width: 240px;
    position: absolute;
    top: 250px;
    left: 260px;
}

h1 {
    color: #39ff14;
    font-size: 3em;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

h2 {
    font-size: 1.2em;
    margin-bottom: 50px;
    font-weight: bold;
}

.text p {
    font-size: 1em;
    line-height: 2.3;
    margin-bottom: 22px;
    text-align: justify;
}

.text ul {
    margin-left: 25px;
    margin-bottom: 25px;
}

.text ul li {
    margin-bottom: 10px;
}

.image-circle {
    position: absolute;
    bottom: 140px;
    right: 10%;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    overflow: hidden;
    opacity: 0.4;
    z-index: 1;
}

.image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1500px) {
    .logo-bg {
        transform: scale(0.8);
    }
}

@media (max-width: 1300px) {
    .logo-bg {
        transform: scale(0.6);
    }
}

@media (max-width: 720px) {
    body {
        font-size: 14px;
    }
    .page {
        background-size: contain;
        padding: 210px 0 400px;
    }
}
