/* Layout */
body {
    background-color: var(--bg-color);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

.content {
    padding: 0 !important;
    padding-bottom: 80px !important;
}

.legal-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 24px;
    position: relative;
}

/* Header & Logo */
.legal-header {
    display: flex;
    justify-content: flex-start; 
    margin-bottom: 60px;
}

.logo-legal {
    width: 100px;
}

/* Back Arrow */
.arrow-back-legal {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    transition: transform 100ms ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-back-legal:hover {
    transform: scale(1.1);
}

/* Typography */
h1 {
    font-size: 60px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
}

h2 {
    font-size: 27px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 10px;
}

p, li {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
}

@media (max-width: 600px) {
    .legal-wrapper {
        padding: 20px;
    }

    h1 {
        font-size: 32px;
        margin-right: 40px;
    }

    .arrow-back-legal {
        top: 25px;
        right: 20px;
    }
}