.legal-content {
    max-width: 1200px;
    margin: 100px auto 60px;
    padding: 0 40px;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(107, 60, 201, 0.1);
}

.legal-content h1 {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #666;
    margin-bottom: 3rem;
    font-size: 0.9rem;
}

.legal-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 0.5rem;
    background: var(--white);
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(107, 60, 201, 0.1);
}

.nav-item {
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-color);
    text-decoration: none;
}

.nav-item.active {
    background: var(--primary-color);
    color: var(--white);
}

.nav-item:not(.active):hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.policy-section {
    margin-bottom: 3rem;
    background: white;
    padding: 2.5rem 3rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    max-width: 100%;
}

.policy-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(107, 60, 201, 0.15);
}

.section-header {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(107, 60, 201, 0.1);
}

.section-icon {
    margin-left: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.policy-section:hover .section-icon {
    transform: rotate(360deg);
    background: var(--primary-color);
    color: var(--white);
}

.policy-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.policy-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #444;
    max-width: 900px;
}

.policy-section ul {
    list-style-type: none;
    padding-left: 0;
    margin-left: 0;
    max-width: 900px;
}

.policy-section ul li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
    color: #444;
}

.policy-section ul li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.policy-section:hover ul li:before {
    color: var(--primary-color);
    transform: scale(1.2);
}

.contact-info {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 900px;
    transition: all 0.3s ease;
}

.contact-info:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
    .legal-content {
        padding: 0 30px;
    }
    
    .policy-section {
        padding: 2rem;
    }

    .legal-navigation {
        margin: 0 1rem 3rem;
    }
}

@media (max-width: 768px) {
    .legal-content {
        margin-top: 100px;
        padding: 0 20px;
    }

    .legal-header {
        padding: 2rem;
        margin: 0 1rem 2rem;
    }

    .legal-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .legal-navigation {
        flex-direction: column;
        border-radius: 10px;
        margin: 0 1rem 2rem;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    .policy-section {
        padding: 1.5rem 1.8rem;
        margin: 0 1rem 2rem;
    }

    .policy-section p,
    .policy-section ul li {
        font-size: 1rem;
        line-height: 1.6;
    }

    .section-header {
        flex-direction: column;
    }

    .section-icon {
        margin: 1rem 0 0;
    }
}

@media (max-width: 480px) {
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .policy-section {
        padding: 1.2rem 1.5rem;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .policy-section h2 {
        font-size: 1.3rem;
    }

    .last-updated {
        font-size: 0.8rem;
    }
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Hover Effects */
.policy-section:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
} 