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

body {
    font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: #ffffff;
    color: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
    overflow-x: hidden;
}

.seedling {
    position: absolute;
    font-size: 1.5rem;
    z-index: 0;
    animation: floatAnimation 6s infinite ease-in-out;
    opacity: 0.7;
    pointer-events: none;
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0) rotate(0deg) translateX(0);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-30px) rotate(5deg) translateX(10px);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-60px) rotate(10deg) translateX(-5px);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-30px) rotate(5deg) translateX(-15px);
        opacity: 0.5;
    }
    100% {
        transform: translateY(0) rotate(0deg) translateX(0);
        opacity: 0.7;
    }
}

.container {
    max-width: 800px;
    text-align: center;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: #000000;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #000000;
}

.content p {
    margin-bottom: 20px;
    padding: 0 20px;
}

.description {
    font-size: 1rem;
    font-style: italic;
    opacity: 0.8;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #888888;
}

@media (max-width: 768px) {
    .container {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .content {
        font-size: 1.1rem;
    }
}