body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    padding: 0;
    margin: 0;
}

.text-wrapper {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    border-radius: 4px;
}

h1 {
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
    font-weight: 700;
}

h2 {
    color: #555;
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.legal-section {
    margin-bottom: 40px;
}

.company-info p {
    display: flex;
    margin: 8px 0;
}

.company-info span {
    font-weight: bold;
    min-width: 220px;
}

a {
    color: #337ab7;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.legal-footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 0.9rem;
    color: #777;
}

@media (max-width: 768px) {
    .text-wrapper {
        margin: 20px;
        padding: 20px;
    }

    .company-info p {
        flex-direction: column;
    }

    .company-info span {
        margin-bottom: 5px;
    }
}


/* Button to return to homepage */
.home-button {
    position: fixed;
    top: 20px;
    left: 20px;
    background-color: var(--color-bg-navigation);
    color: var(--color-text-navigation);
    padding: 10px 15px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: background-color 0.3s;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.home-button:hover {
    background-color: var(--color-bg-navigation-selected);
    text-decoration: none;
    /* color: white; */
}

footer.legal-footer a {
    display: inline-block;
    margin-top: 10px;
    color: #337ab7;
    text-decoration: none;
}

footer.legal-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .home-button {
        position: relative;
        top: 10px;
        left: 10px;
        margin-bottom: 20px;
        display: block;
        width: max-content;
    }
}
