/* Terms and Conditions Page Styles */

/* Active navigation link */
nav ul li a.active {
    color: #7BFF00;
    position: relative;
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #7BFF00;
    bottom: -5px;
    left: 0;
}

/* Terms Hero Section */
.terms-hero {
    background-color: #000;
    padding: 80px 100px 40px;
    position: relative;
    overflow: hidden;
    color: white;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.terms-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

.terms-tag {
    display: inline-block;
    color: #7BFF00;
    border: 1px solid #7BFF00;
    border-radius: 30px;
    padding: 5px 15px;
    font-size: 14px;
    margin-bottom: 30px;
}

.terms-heading {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    position: relative;
}

.terms-heading::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, #7BFF00, transparent);
    bottom: -15px;
    left: 0;
}

.terms-updated {
    margin-top: 40px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.terms-lines {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.5;
    z-index: 1;
}

/* Terms Content Section */
.terms-content-section {
    background-color: #000;
    padding: 60px 100px;
    color: white;
}

.terms-container {
    max-width: 1200px;
    margin: 0 auto;
}

.terms-block {
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
}

.terms-block:last-child {
    border-bottom: none;
}

.terms-block h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #7BFF00;
}

.terms-block p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.terms-block a {
    color: #7BFF00;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-block a:hover {
    color: #03FEF7;
    text-decoration: underline;
}

.terms-block ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.terms-block ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-details {
    list-style-type: none;
    margin-left: 0;
}

.contact-details li {
    margin-bottom: 10px;
}

/* Legal Links in Footer */
.legal-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 14px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover,
.legal-links a.active {
    color: #7BFF00;
}

.legal-links .divider {
    color: rgba(255, 255, 255, 0.3);
}

/* Mobile responsiveness */
@media screen and (max-width: 1024px) {
    .terms-hero,
    .terms-content-section {
        padding: 60px 40px;
    }
    
    .terms-heading {
        font-size: 48px;
    }
}

@media screen and (max-width: 768px) {
    .terms-hero,
    .terms-content-section {
        padding: 40px 20px;
    }
    
    .terms-heading {
        font-size: 36px;
    }
    
    .terms-block h2 {
        font-size: 20px;
    }
    
    .terms-block p,
    .terms-block ul li {
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .terms-heading {
        font-size: 30px;
    }
    
    .terms-tag {
        font-size: 12px;
        padding: 4px 12px;
    }
    
    .terms-block h2 {
        font-size: 18px;
    }
    
    .terms-block p,
    .terms-block ul li {
        font-size: 14px;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }
    
    .legal-links .divider {
        display: none;
    }
} 