/* Terms & Conditions Page Styles */
.terms-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #ffffff;
    font-family: 'Times New Roman', serif;
    color: #000000;
}

.terms-header {
    text-align: left;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #000000;
}

.terms-title {
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.terms-subtitle {
    font-size: 14px;
    color: #000000;
    margin-bottom: 5px;
}

.company-info {
    background: none;
    color: #000000;
    padding: 20px 0;
    border: 1px solid #000000;
    margin-bottom: 30px;
    text-align: left;
    padding-left: 20px;
}

.company-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.company-address {
    font-size: 14px;
    line-height: 1.4;
}

.terms-content {
    line-height: 1.6;
    color: #000000;
}

.terms-section {
    margin-bottom: 25px;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}

.section-title {
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 15px;
    display: block;
}

.section-number {
    display: inline;
    background: none;
    color: #000000;
    font-weight: bold;
    font-size: 16px;
    margin-right: 5px;
}

.section-content {
    font-size: 14px;
    line-height: 1.6;
    color: #000000;
    margin-left: 0;
}

.contact-section {
    background: none;
    color: #000000;
    padding: 20px 0;
    border: 1px solid #000000;
    margin-top: 30px;
    text-align: left;
    padding-left: 20px;
    box-shadow: none;
}

.contact-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000000;
}

.contact-info {
    display: block;
    margin-top: 15px;
}

.contact-item {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-item i {
    display: none;
}

.contact-item a {
    color: #000000;
    text-decoration: underline;
}

.last-updated {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #000000;
    font-style: italic;
    color: #000000;
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .terms-container {
        padding: 30px 15px;
    }
    
    .terms-title {
        font-size: 20px;
    }
    
    .company-name {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 14px;
    }
    
    .terms-section {
        margin-bottom: 20px;
    }
    
    .company-info, .contact-section {
        padding-left: 15px;
    }
}

@media (max-width: 480px) {
    .terms-title {
        font-size: 18px;
    }
    
    .section-content {
        font-size: 13px;
    }
    
    .company-info, .contact-section {
        padding-left: 10px;
    }
}

/* Print styles */
@media print {
    .terms-container {
        padding: 20px;
        box-shadow: none;
    }
    
    .terms-section {
        box-shadow: none;
        border: none;
        break-inside: avoid;
    }
    
    .contact-section {
        background: none !important;
        color: #000000 !important;
        border: 1px solid #000000 !important;
    }
    
    .company-info {
        background: none !important;
        color: #000000 !important;
        border: 1px solid #000000 !important;
    }
}