/* File: public/style.css */
:root {
    --bg-color: #f4f7f9;
    --panel-color: #ffffff;
    --text-color: #2c3e50;
    --heading-color: #34495e;
    --accent-color: #3498db;
    --border-color: #e1e5e8;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    width: 100%;
    max-width: 900px;
    box-sizing: border-box;
}

.panel {
    flex: 1; /* Each panel takes equal space */
    background-color: var(--panel-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.panel-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.panel-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin: 0 0 1.5rem 0;
}

.panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.panel-list li {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.footer {
    text-align: center;
    margin-top: 2rem;
    padding-bottom: 2rem;
}

.footer p {
    color: #7f8c8d;
    margin: 0 0 1rem 0;
}

.social-links a {
    color: #95a5a6;
    font-size: 1.5rem;
    margin: 0 0.75rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
}