
/* About page specific styles */
.about-container {
    max-width: 800px;
    margin: 30px auto;
}

.about-section {
    margin-bottom: 40px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.about-section h3 {
    color: #007bff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.about-content {
    padding-left: 20px;
}

.about-content h4 {
    color: #495057;
    margin: 20px 0 15px 0;
}

.about-content ul {
    list-style-type: disc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-content li {
    margin-bottom: 10px;
}

.about-content p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}

.contact-section {
    background-color: #e9ecef;
}

.contact-info {
    margin-top: 15px;
    padding: 15px;
    background-color: white;
    border-radius: 4px;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Terms and Conditions specific styles */
.terms-section {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
}

.terms-box {
    background-color: white;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.terms-disclaimer {
    font-weight: bold;
    color: #dc3545;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #fff3cd;
    border-radius: 4px;
}

.terms-box h4 {
    color: #2c3e50;
    margin: 25px 0 15px 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.terms-box ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.terms-box li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.terms-acceptance {
    margin-top: 30px;
    padding: 15px;
    background-color: #e9ecef;
    border-radius: 4px;
    text-align: center;
}

.terms-acceptance p {
    margin: 0;
    color: #2c3e50;
}