* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: linear-gradient(135deg, #B8E0FF 0%, #6BA3D8 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
}

header {
    text-align: center;
    margin-bottom: 4rem;
}

.title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 800px;
}

.button {
    background: #ffffff;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-decoration: none;
    color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 200px;
}

.button:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.button h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #667eea;
}

.button p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

footer {
    margin-top: 4rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

footer p {
    padding: 1rem 0;
}

@media (max-width: 768px) {
    .title {
        font-size: 2.2rem;
    }
    
    .buttons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .button {
        padding: 2rem 1.5rem;
        min-height: 160px;
    }
    
    .button h2 {
        font-size: 1.5rem;
    }
    
    .button p {
        font-size: 1rem;
    }
}

