body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #1f2328;
    background: #eef1f5;
    margin: 0;
    padding: 20px;
}

.card {
    max-width: 900px;
    margin: auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
    overflow: hidden;
    min-height: 95vh;
}

.card-header {
    padding: 40px 25px;
    text-align: center;
    color: white;
    background: radial-gradient(circle at top left,
            #3fc8c7 0%,
            #1f8297 40%,
            #0d2a4a 100%);
}

.card-header h1 {
    margin: 0;
    font-size: 34px;
    font-weight: 600;
    text-transform: uppercase;
    font-family:
        "HelveticaNeue-CondensedBold", "Helvetica-Condensed", "Helvetica Neue", Arial, sans-serif;
}

.content {
    padding: 30px 30px 30px 30px;
}

.lang {
    text-align: left;
    font-size: 12px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    line-height: 16px;
    word-wrap: break-word;
    margin-bottom: 20px;
    position: relative;
}

.lang select {
    width: 100%;
    max-width: 300px;
    height: 44px;
    padding: 0 40px 0 15px;
    background: #d9f4ff;
    color: black;
    border: 2px solid #298296;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.lang::after {
    content: "";
    position: absolute;
    left: 270px;
    top: 48%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #298296;
    border-bottom: 2px solid #298296;
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
}

.lang select:focus {
    outline: 2px solid #3fc8c7;
    outline-offset: 2px;
    /* border-color: #3fc8c7; */
}

h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 26px;
    text-transform: uppercase;
    font-family: "HelveticaNeue-CondensedBold", "Helvetica-Condensed", "Helvetica Neue", Arial, sans-serif;
    margin-top: 40px;
}

h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 16px;
    text-transform: uppercase;
    margin-top: 20px;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 12px 0;
    line-height: 1.6;
}

a {
    color: #136EBF;
    font-weight: bolder;
    transition: color 0.2s ease;
}
a:hover {
    color: #0087C9;
}
a:active {
    color: #0087C9;
}

strong {
    font-weight: 700;
}

.badges {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.badges a {
    display: inline-block;
}

.badges img {
    display: block;
}