@import url('/public/assets/css/main.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", "Segoe UI", sans-serif;
}

body {
    min-height: 100vh;
    padding: 20px;
}

.info-page {
    width: 720px;
    max-width: calc(100% - 16px);
    margin: 24px auto;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    color: #111;
    padding: 24px 28px 28px;
}

.info-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-bottom: 20px;
}

.info-header .info-logo {
    grid-column: 2;
    justify-self: center;
    display: inline-flex;
}

.info-header .info-logo img {
    width: 100px;
    height: auto;
    display: block;
}

.info-header .info-avatar {
    grid-column: 3;
    justify-self: end;
}

.info-header .info-avatar {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--btn-primary);
    background: #f3f4f6;
}

.info-header .info-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-sections {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px 24px;
    color: #111;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.info-card h2 {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    color: #111;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #374151;
    text-align: center;
    margin-bottom: 8px;
}

.info-card p:last-child {
    margin-bottom: 0;
}

.info-card .contact-list {
    list-style: none;
    padding: 0;
    text-align: center;
    font-size: 14px;
    color: #374151;
}

.info-card .contact-list li {
    margin: 6px 0;
}

.info-card a {
    color: var(--btn-primary);
    text-decoration: none;
    font-weight: 500;
}

.info-card a:hover {
    text-decoration: underline;
}

.info-card .gdpr-link {
    display: inline-block;
    margin-top: 6px;
    padding: 8px 20px;
    background: var(--btn-primary);
    color: #fff;
    border-radius: 40px;
    font-weight: 600;
    transition: background .15s, transform .1s;
}

.info-card .gdpr-link:hover {
    background: var(--btn-primary-hover);
    transform: translateY(-1px);
    text-decoration: none;
}

.info-footer {
    text-align: center;
    margin-top: 18px;
    font-size: 13px;
    color: #6b7280;
}

@media (max-width: 600px) {
    .info-page {
        padding: 18px 16px 22px;
    }

    .info-card {
        padding: 16px 18px;
    }

    .info-card h2 {
        font-size: 19px;
    }
}
