/* Terms of Service Page Styles */

/* Page Layout */
.page-content {
    padding: 140px 0 80px;
    min-height: 70vh;
    background-color: #050505;
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page Title */
.policy-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: #fff;
    position: relative;
    padding-bottom: 15px;
}

.policy-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: #2ecc71;
}

/* Content Sections */
.policy-section {
    margin-bottom: 40px;
    padding-left: 20px;
    border-left: 1px solid rgba(46, 204, 113, 0.2);
}

.policy-section h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #2ecc71;
}

.policy-section p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}

/* Links */
.policy-section a {
    color: #2ecc71;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px dotted rgba(46, 204, 113, 0.5);
    padding-bottom: 1px;
}

.policy-section a:hover {
    color: #fff;
    border-bottom-color: #fff;
}

/* Contact Section (Last Section) */
.policy-section:last-child {
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-content {
        padding: 120px 0 60px;
    }
    
    .policy-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .page-content {
        padding: 100px 0 40px;
    }
    
    .policy-title {
        font-size: 1.8rem;
    }
    
    .policy-section {
        padding-left: 15px;
    }
}