:root {
    font-family: "Segoe UI", system-ui, sans-serif;
    color: #0f172a;
    background-color: #f8fafc;
    line-height: 1.6;
    margin: 0;
}

body {
    min-height: 100vh;
    margin: 0;
    padding: 0 24px 64px;
    display: flex;
    justify-content: center;
}

.page {
    width: min(1200px, 100%);
    padding: 48px 24px;
}

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

header h1 {
    margin-bottom: 8px;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
}

header p {
    margin: 0;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    color: #475569;
}

section {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    margin-bottom: 32px;
}

section h2 {
    margin-top: 0;
    font-size: 1.8rem;
    color: #0f172a;
}

.grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    margin-top: 24px;
}

article {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
}

article img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    background-color: #f8fafc;
}

article .content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

article .content strong {
    font-size: 1rem;
    margin-bottom: 8px;
}

article .content p {
    margin: 0;
    color: #475569;
    font-size: 0.95rem;
}

ul.plain {
    padding-left: 20px;
    margin: 0;
}

footer {
    text-align: center;
    color: #475569;
    font-size: 0.9rem;
    margin-top: 24px;
}

@media (max-width: 640px) {
    section {
        padding: 24px;
    }

    article img {
        height: 140px;
    }
}

.contact-grid article {
    flex-direction: row;
    align-items: center;
}

.contact-grid article img {
    width: 64px;
    height: 64px;
    margin-right: 8px;
    margin-left: 16px;
}