body {
    margin-top: 20px;
}

.press-container {
    max-width: 720px;
    margin: 0 auto 20px auto;
    background: rgb(28, 28, 39);
    padding: 40px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.press-container h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 28px;
    color: rgb(243, 243, 243);
    letter-spacing: -0.02em;
}

.press-container h4 {
    color: orangered;
}

.pop-out-section {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: rgb(230, 230, 230);
    background: rgb(46 46 59);
    padding: 20px;
    border-radius: 6px;
    border: 1px solid grey;
    display: block;
}

.press-container span a {
    color: orange;
    text-decoration: none;
}

.key-facts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}

.key-fact {
    background: rgb(183 144 205);
    padding: 16px;
    border-radius: 6px;
    text-align: center;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
}

.key-fact .value {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111;
    display: block;
}

.key-fact .key {
    font-size: 0.85rem;
    color: #555;
    margin-top: 4px;
}

.contact-us {
    display: flex;
    flex-direction: column;
    color: rgba(220, 220, 220, 1);
    justify-content: center;
    text-align: center;
    align-items: center;
}

.contact-us a {
    text-decoration: none;
    color: orange;
}

.contact-us a:hover {
    color: orangered;
}

.contact-us a.button {
    background: orange;
    border: none;
    border-radius: 5px;
    padding: 10px 20px 10px 25px;
    color: white;
    text-decoration: none;
}

.contact-us a.button:hover {
    background: orangered;
}