* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fff;
    color: #000;
    font-family: 'Courier New', Courier, monospace;
    line-height: 1.6;
    padding: 40px 20px;
}

main {
    max-width: 650px;
    margin: 0 auto;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.lang-switch {
    font-size: 0.8rem;
}

.lang-switch a {
    border-bottom: none;
    cursor: pointer;
    color: #0000ff;
}

header {
    margin-bottom: 50px;
}

h1 {
    font-size: 1.5rem;
    letter-spacing: -1px;
    margin-bottom: 0; 
    text-transform: uppercase;
}

h2 {
    font-size: 1.1rem;
    margin: 30px 0 15px 0;
    text-decoration: underline;
}

ul {
    list-style: none;
}

li {
    margin-bottom: 10px;
}

a {
    color: #0000ff;
    text-decoration: none;
    border-bottom: 1px dotted #000;
}

a:hover {
    background-color: #000;
    color: #fff;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.pricing-table td {
    padding: 5px 0;
}

.pricing-table td:last-child {
    text-align: right;
    font-weight: bold;
}

footer {
    margin-top: 60px;
    font-size: 0.8rem;
    opacity: 0.6;
}

.lang {
    display: none;
}

@media (max-width: 600px) {
    body {
        padding: 20px;
    }
}