@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #12253C;
    background-color: #ffffff;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
}

header {
    background-color: #2563eb;
    color: white;
    padding: 2rem;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

nav {
    margin-top: 1rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.8;
}

main {
    flex: 1;
    padding: 3rem 2rem;
}

.links-container {
    max-width: 800px;
    margin: 0 auto;
}

.links-container h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1f2937;
}

.link-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.card h3 {
    color: #2563eb;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.card p {
    color: #6b7280;
    font-size: 1rem;
}

.content-page {
    max-width: 800px;
    margin: 0 auto;
}

.content-page h2 {
    font-size: 1.125rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.last-updated {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-style: italic;
}

section {
    margin-bottom: 2.5rem;
}

section h3 {
    font-size: 1rem;
    color: #374151;
    margin-bottom: 1rem;
    font-weight: 600;
}

section p {
    color: #4b5563;
    margin-bottom: 1rem;
}

ul {
    margin-left: 2rem;
    color: #4b5563;
    list-style-type: lower-alpha;
}

li {
    margin-bottom: 0.5rem;
}

footer {
    background-color: #f3f4f6;
    color: #374151;
    text-align: center;
    padding: 1.5rem;
    margin-top: auto;
}

footer p {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    main {
        padding: 2rem 1.5rem;
    }
    
    .content-page h2 {
        font-size: 1.125rem;
    }
    
    section h3 {
        font-size: 1rem;
    }
    
    .link-cards {
        grid-template-columns: 1fr;
    }
}

