

.legal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.legal-header img {
    width: 3rem;
}



.legal-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 0.5rem 1.2rem rgba(0, 0, 0, 0.1);
}

.legal-card h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;

    margin-bottom: 0.3rem;
}

.legal-card h3 {
    margin-top: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.legal-card p,
.legal-card li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 0.6rem;
}

.legal-card ul {
    padding-left: 1.2rem;
}

.updated {
    font-size: 0.8rem;
    opacity: 0.6;
}

.legal-note {
    background: #eef4ff;
    border-left: 4px solid #972EFF;
    padding: 0.8rem 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    margin: 1rem 0;
}



main {
    padding: 0 2rem;
}





button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
    -webkit-appearance: none;
    appearance: none;
    color: #000;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    border: none;
    background: none;
    
    font-family: "Nunito", sans-serif;
    font-weight: 500;
}





/* HEADER */


header {
    width: 100%;
    height: auto;

    padding: 2rem 2rem;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    height: 1.3rem;
}

header .menu img {
    height: 1.5rem;
}

.left-side,
.right-side {
    display: flex;
}

.left-side {
    display: flex;
    gap: 1rem;
}

.right-side button {
    padding: .6rem 1.5rem;

    font-size: 1.1rem;
    font-weight: bold;
    color: #e4e4e4;

    background: #000;
    border-radius: 5rem;
}


/* MENU */

.menu-wrapper {
    position: relative;
}

/* Hidden by default */
.hover-menu {
    position: absolute;
    top: 120%;
    left: 0;
    width: 15rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
    z-index: 1000;
}

/* Show on hover */
.menu-wrapper:hover .hover-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Menu items */
.hover-menu ul {
    list-style: none;
    padding: 1rem;
    margin: 0;
}

.hover-menu li {
    margin-bottom: 0.75rem;
}

.hover-menu li:last-child {
    margin-bottom: 0;
}

.hover-menu a {
    display: block;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.hover-menu a:hover {
    background: #FDD919;
}





/* FOOTER */

.footer {
    background: #000;
    color: #fff;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 2rem;
    padding: 30px 40px;
}

.logo {
    grid-column: 1;
}

.logo img {
    height: 3.5rem;
}

.social-links {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-links {
    grid-column: 2;

}

.social-links,
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-links li,
.footer-links li {
    margin-bottom: 1rem;
    padding: 0 1.5rem;
}

.social-links a,
.footer-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 1.2rem;
}

.social-links a:hover,
.footer-links a:hover {
    color: #fff;
}

.footer-divider {
    height: 1px;
    background: #333;
    margin: 0 40px;
}

.footer-copy {
    text-align: center;
    font-size: 1.1rem;
    color: #888;
    padding: 2rem .5rem;
}