/* Import base styles */
@import url('style.css');

/* Navigation active state */
nav .nav-links a.active {
    color: #8a2be2;
    font-weight: 600;
}

/* Legal pages */
.legal-page {
    padding: 120px 20px 80px;
    min-height: 100vh;
}

.legal-page .container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-page h1 {
    font-family: 'Crimson Text', serif;
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
}

.legal-page h2 {
    font-family: 'Crimson Text', serif;
    font-size: 32px;
    margin: 40px 0 20px;
    color: #fff;
}

.legal-page h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: rgba(255, 255, 255, 0.9);
}

.legal-page p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.legal-page ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-page li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.legal-page .lead {
    font-size: 20px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

/* Button functionality */
button, .cta-button, .pricing-button {
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover, .cta-button:hover, .pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
}

/* Modal styles for button actions */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    background-color: #1a1a2e;
    margin: 10% auto;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.modal-close:hover {
    color: #fff;
}