.legal-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 36px 28px;
    font-family: 'Poppins', sans-serif;
    color: #8d6a5d;
    background-color: #fffaf9;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(196, 125, 154, 0.06);
    line-height: 1.7;
}

.legal-section {
    margin-bottom: 30px;
}

.legal-section h2 {
    color: #ff6f6f;
    font-family: 'Pacifico', cursive;
    font-size: 1.6rem;
    margin-bottom: 12px;
    border-bottom: 2px solid rgba(255, 111, 111, 0.12);
    padding-bottom: 6px;
}

.legal-section p,
.legal-section li {
    color: #9c6653;
    font-family: 'Baskerville', serif;
    font-size: 1rem;
    text-align: justify;
    margin-bottom: 10px;
}

.legal-section ul {
    padding-left: 20px;
    margin-top: 8px;
}

.legal-footer {
    text-align: center;
    margin-top: 36px;
    font-size: 0.95em;
    color: #7f8c8d;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    text-decoration: none;
    color: #ff6f6f;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 111, 111, 0.05);
    transition: background 0.25s ease, transform 0.18s ease, color 0.18s ease;
}

.back-link i {
    margin-right: 4px;
    color: #ff6f6f;
    font-size: 1em;
}

.back-link:hover {
    background: #ff6f6f;
    color: #ffffff;
    transform: translateY(-3px);
}

@media screen and (max-width: 768px) {
    .legal-container {
        padding: 20px;
        margin: 20px auto;
        width: 95%;
    }
    .legal-section h2 {
        font-size: 1.3rem;
    }
}
#nav_normal{

    background-color: #fffaf9;
    box-shadow: 0 4px 12px rgba(196, 125, 154, 0.1);
    padding: 12px 24px;
    border-radius: 8px;
    margin-bottom: 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}
#nav_normal a{
    text-decoration: none;
    color: #ff6f6f;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    list-style: none;
  
}
#nav_normal ul{
  
    list-style: none;
}
#nav_normal i{
    padding-right: 8px;
}