body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: seagreen;
    color: #ffffff;
}

#app {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.block {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.block:hover {
    transform: translateY(-5px);
}

h1 {
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
}

h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    line-height: 1.5;
}

.feature-list {
    list-style-type: none;
    padding-left: 0;
}

.feature-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.feature-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffffff;
}

.logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background-color: #ffffff;
    border-radius: 50%;
}

.hero-image {
    width: 100%;
    height: 200px;
    background-color: rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 18px;
}