* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.container {
    text-align: center;
    max-width: 1000px;
    width: 100%;
}

h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.button-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.image-button {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    background: white;
}

.image-button:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.image-button img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.image-button:hover img {
    transform: scale(1.05);
}

.button-text {
    padding: 1.5rem;
    background: white;
}

.button-text h2 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.button-text p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .button-grid {
        grid-template-columns: 1fr;
    }
    
    .image-button img {
        height: 200px;
    }
}
