body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

.background {
    width: 100vw;
    min-height: 100vh;
    background: url('banner2.png') center center/cover no-repeat;
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    margin-top: 20px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.overlay-transparent {
    background-color: rgba(0, 0, 0, 0.0);
    padding: 2rem;
    border-radius: 12px;
    flex-grow: 1;
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);*/
}

main {
    padding: 2rem;
}

.intro, .links {
    max-width: 800px;
    margin: 0 auto 2rem auto;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

a {
    color: #0077cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 1rem;
    background: #222;
    color: white;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.info-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ff5722;
}

.info-card h2 {
    color: #0077cc;
    margin-bottom: 0.5rem;
}