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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

header h1 {
    font-size: 2.5rem;
    color: #111;
    margin-bottom: 10px;
}

header p {
    font-size: 1.1rem;
    color: #666;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 600px;
}

.grid-button {
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background-color: #ffffff;
    color: #56752b;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border: 2px solid #56752b;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.2s ease-in-out;
    text-align: center;
}

/* Icon Styling */
.grid-button i {
    font-size: 2.2rem;
    margin-bottom: 12px;
    line-height: 1;
}

.grid-button:hover {
    background-color: #56752b;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,102,204,0.2);
}

@media (max-width: 480px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
}
