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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    min-height: 100vh;
    color: #2e7d32;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease-out;
}

header h1 {
    font-size: 2.5rem;
    color: #1b5e20;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.2rem;
    color: #4caf50;
    font-style: italic;
}

.hero {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.lettuce-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: bounce 2s infinite;
}

.lettuce-avatar .lettuce {
    display: inline-block;
    animation: swing 3s infinite ease-in-out;
}

.lettuce-avatar .rainbow {
    display: inline-block;
    animation: rotate 5s infinite linear;
}

.quote {
    font-size: 1.3rem;
    font-style: italic;
    color: #2e7d32;
    max-width: 600px;
    margin: 0 auto;
}

.story {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.story h2 {
    color: #1b5e20;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.story p {
    margin-bottom: 1rem;
    color: #33691e;
}

.rainbow-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out 0.9s both;
}

.rainbow-section h2 {
    text-align: center;
    color: #1b5e20;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.rainbow-strips {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rainbow-strips .strip {
    padding: 1rem;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideInLeft 0.5s ease-out both;
}

.rainbow-strips .strip:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.rainbow-strips .strip:nth-child(1) {
    background: linear-gradient(90deg, #ff5252, #ff1744);
    animation-delay: 0.1s;
}

.rainbow-strips .strip:nth-child(2) {
    background: linear-gradient(90deg, #ff9800, #ff6d00);
    animation-delay: 0.2s;
}

.rainbow-strips .strip:nth-child(3) {
    background: linear-gradient(90deg, #ffeb3b, #fbc02d);
    color: #333;
    animation-delay: 0.3s;
}

.rainbow-strips .strip:nth-child(4) {
    background: linear-gradient(90deg, #4caf50, #2e7d32);
    animation-delay: 0.4s;
}

.rainbow-strips .strip:nth-child(5) {
    background: linear-gradient(90deg, #2196f3, #1565c0);
    animation-delay: 0.5s;
}

.rainbow-strips .strip:nth-child(6) {
    background: linear-gradient(90deg, #3f51b5, #303f9f);
    animation-delay: 0.6s;
}

.rainbow-strips .strip:nth-child(7) {
    background: linear-gradient(90deg, #9c27b0, #7b1fa2);
    animation-delay: 0.7s;
}

.wisdom {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out 1.2s both;
}

.wisdom h2 {
    color: #1b5e20;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
}

.lessons {
    list-style: none;
    padding: 0;
}

.lessons li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 8px;
    font-size: 1.1rem;
    transition: transform 0.3s ease, background 0.3s ease;
    animation: slideInRight 0.5s ease-out both;
}

.lessons li:hover {
    transform: translateX(10px);
    background: rgba(76, 175, 80, 0.2);
}

.lessons li:nth-child(1) { animation-delay: 0.1s; }
.lessons li:nth-child(2) { animation-delay: 0.2s; }
.lessons li:nth-child(3) { animation-delay: 0.3s; }
.lessons li:nth-child(4) { animation-delay: 0.4s; }

footer {
    text-align: center;
    padding: 2rem;
    color: #1b5e20;
    animation: fadeIn 1s ease-out 1.5s both;
}

footer p {
    margin-bottom: 0.5rem;
}

.tiny {
    font-size: 0.9rem;
    opacity: 0.7;
    font-style: italic;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes swing {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    header h1 {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .lettuce-avatar {
        font-size: 3rem;
    }

    .quote {
        font-size: 1.1rem;
    }

    .story, .rainbow-section, .wisdom {
        padding: 1.5rem;
    }

    .story h2, .rainbow-section h2, .wisdom h2 {
        font-size: 1.5rem;
    }
}
