* {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    background-color: #3a3a5a;
    flex-direction: column;
    min-height: 100vh;
    display: flex;
    padding: 0;
    margin: 0;
}

.header {
    justify-content: space-between;
    background-color: #222236;
    align-items: center;
    padding: 10px 20px;
    display: flex;
}

.logo-img{
    width: 270px;
    height: 30px;
}

.nav-list {
    align-items: center;
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    gap: 15px;
}

.nav-link {
    text-decoration: none;
    color: #ffff;
}

.nav-link {
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    border-radius: 5px;
    padding: 5px 10px;
    padding: 5px 10px;
    font-weight: 500;
    color: white;

}

.nav-link:hover {
    text-shadow: #AAAAAA 0px 0px 5px;
    color: white;
}

.nav-link-button {
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-shadow: none !important;
    background-color: #c8374c;
    border-radius: 5px;
    padding: 5px 20px;
    color: white;
}

.nav-link-button:hover {
    text-shadow: none !important;
    background-color: #a62d44;
    transform: scale(1.05);
}

main {
    background: linear-gradient(160deg, #3f3f68, #484870);
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    border-radius: 15px;
    padding: 3rem 2rem;
    width: 85%;
    max-width: 900px;
    margin: 6vh auto;
    color: #fff;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.legal-header {
    text-align: center;
    margin-bottom: 1rem;
}

.legal-header h1 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
}

.legal-header h1::after {
    content: "";
    display: block;
    margin: 10px auto;
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: #de1f6f;
}

.legal-header .intro {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.legal-section {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.legal-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

.legal-section h2 {
    color: #ffd166;
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
}

.legal-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #f5f5f5;
}

.contact-info {
    text-align: center;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 760px) {
    main {
        padding: 2rem 1rem;
        width: 90%;
    }
    .legal-header h1 {
        font-size: 1.8rem;
    }
}

.menu-toggle {
    flex-direction: column;
    cursor: pointer;
    display: none;
    gap: 5px;
}

.bar {
    background-color: white;
    border-radius: 4px;
    width: 30px;
    height: 4px;
}

.side-menu {
    transition: right 0.3s ease;
    background-color: #222;
    font-size: 1.2rem;
    padding-top: 50px;
    position: fixed;
    right: -250px;
    width: 250px;
    height: 100%;
    top: 0;
}

.side-menu.active {
    right: 0;
}

.side-menu-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.side-nav-link {
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: block;
    padding: 10px;
    color: white;
}

.side-nav-link:hover {
    background-color: #444;
}

.close-btn {
    position: absolute;
    cursor: pointer;
    font-size: 30px;
    color: white;
    right: 20px;
    top: 20px;
}

@keyframes slideInLeftBounce {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    60% {
        opacity: 1;
        transform: translateX(10px);
    }
    80% {
        transform: translateX(-5px);
    }
    100% {
        transform: translateX(0);
    }
}

.whatsapp-float {
    animation: slideInLeftBounce 0.8s ease-out;
    background: none;
    position: fixed;
    z-index: 1000;
    border: none;
    bottom: 20px;
    left: 20px;
    padding: 0;
}

.whatsapp-icon {
    transition: transform 0.3s ease;
    height: 60px;
    width: 60px;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
}

.footer {
    border-top: 1px solid #222236;
    background-color: #222236;
    text-align: center;
    padding: 15px 20px;
    margin-top: auto;
    font-size: 14px;
    color: white;
}

.footer-text {
    margin: 0;
}

.footer-link {
    text-decoration: none;
    margin-left: 10px;
    color: #AAAAAA;
    font-size: 14px;
}

.footer-link:hover {
    text-decoration: underline;
    color: #FFFFFF;
}

.contact {
    transition: color 0.3s ease;
    text-decoration: none;
    font-weight: 500;
    color: #FFFF00;
}

.contact:hover {
    color: #9e9e01;
}

/************ Media Queries ***********/
@media (max-width: 760px) {
    .nav-list {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}