body {
    margin: 0;
    font-family: 'Helvetica Neue', sans-serif;
    background: white;
    color: #004d4d;
    scroll-behavior: smooth;
}
.hero {
    position: relative;
    text-align: center;
    background-color: #004d4d;
    color: white;
    padding: 60px 20px;
}
.hero-img {
    width: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
}
.hero-title {
    font-size: 2.5rem;
    margin: 0;
}
.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
}
.intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 20px;
}
.intro-text {
    flex: 1;
}
.puppet {
    width: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    padding: 40px 20px;
    background: #f4f4f4;
}
.tile {
    background: white;
    padding: 30px;
    text-align: center;
    font-weight: bold;
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.tile:hover {
    transform: scale(1.05);
    background: #e0f7f7;
}
.media {
    text-align: center;
    padding: 60px 20px;
}
.logo-placeholder {
    width: 120px;
}
.footer {
    background: #002f2f;
    color: white;
    text-align: center;
    padding: 20px;
}
.footer a {
    color: #a0e0e0;
    margin: 0 10px;
    text-decoration: none;
}
