/* Main Landing Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f4f4f4;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    flex: 1;
}

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

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

header p {
    font-size: 1.2em;
    color: #666;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.link-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    border-color: #000;
}

.icon {
    font-size: 2em;
    margin-bottom: 15px;
    display: block;
}

.link-card h2 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #000;
}

.link-card p {
    font-size: 0.9em;
    color: #666;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: auto;
    color: #888;
    font-size: 0.9em;
}
