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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #1358a2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: #1a1a1a;
}

.card {
    background: #ffffff;
    border: 1px solid #e0ddd5;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    max-width: 560px;
    width: 100%;
    text-align: center;
}

.icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    /*background: #faeeda;*/
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 32px;
}

    .icon-wrap img {
        width: 230px;
    }

.icon-wrap-2 {
    width: 72px;
    height: 50px;
    border-radius: 50%;
    /*background: #faeeda;*/
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0rem;
    font-size: 32px;
}

.label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #888780;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

h1 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.subtitle {
    font-size: 16px;
    color: #5f5e5a;
    margin-bottom: 1.75rem;
}

.info-box {
    background: #f5f5f0;
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.75rem;
    text-align: left;
}

.info-row {
    display: flex;
    gap: 12px;
    margin-bottom: 1rem;
}

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

.info-icon {
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.info-label {
    font-size: 13px;
    color: #888780;
    margin-bottom: 2px;
}

.info-value {
    font-size: 15px;
    font-weight: 500;
}

.info-sub {
    font-size: 14px;
    color: #5f5e5a;
}

.description {
    font-size: 14px;
    color: #5f5e5a;
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

    .description span {
        color: #888780;
    }

.footer {
    border-top: 1px solid #e0ddd5;
    padding-top: 1.25rem;
    font-size: 13px;
    color: #5f5e5a;
}

    .footer strong {
        color: #1a1a1a;
        font-weight: 500;
    }
