/* Legal Pages Styling */
:root {
    --primary-color: #544dff;
    --secondary-color: #403ad0;
    --accent-color: #6e68ff;
    --text-color: #1f2937;
    --light-text: #6b7280;
    --background: #f9fafb;
    --card-bg: rgba(255, 255, 255, 0.85);
    --card-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    --card-border: 1px solid rgba(255, 255, 255, 0.18);
    --transition: all 0.3s ease;
}

/* Legal Section Layout */
.legal-section {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, #f9fafd 0%, #eeeeff 100%);
    background-attachment: fixed;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styling */
.legal-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.legal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(84, 77, 255, 0.25);
}

.legal-icon i {
    font-size: 32px;
    color: white;
}

.legal-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 10px;
}

.legal-date {
    color: var(--light-text);
    font-style: italic;
    margin-bottom: 30px;
}

/* Legal Content Styling */
.legal-intro {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    border: var(--card-border);
    margin-bottom: 30px;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
}

.legal-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    border: var(--card-border);
    margin-bottom: 30px;
    transition: var(--transition);
}

.legal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(31, 38, 135, 0.15);
}

.legal-card h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

.legal-card p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.legal-card ul {
    list-style-type: none;
    padding-left: 20px;
    margin-bottom: 20px;
}

.legal-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.legal-card ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-info {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
}

/* Footer Styling */
.legal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.btn-back {
    background: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.btn-back i {
    margin-right: 8px;
}

.btn-back:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: var(--text-color);
    text-decoration: none;
    position: relative;
    transition: var(--transition);
}

.legal-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--primary-color);
}

.legal-links a:hover:after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .legal-section {
        padding: 100px 0 60px;
    }
    
    .legal-header h1 {
        font-size: 32px;
    }
    
    .legal-card h2 {
        font-size: 20px;
    }
    
    .legal-footer {
        flex-direction: column;
        align-items: center;
    }
    
    .legal-links {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .legal-icon {
        width: 60px;
        height: 60px;
    }
    
    .legal-icon i {
        font-size: 24px;
    }
    
    .legal-card {
        padding: 20px;
    }
    
    .legal-intro {
        padding: 20px;
        font-size: 16px;
    }
} 