/* About Page Styles */
.about-section {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.about-section h2 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-section h3 {
    color: #3498db;
    margin: 25px 0 15px;
}

.about-section p, .about-section ul {
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-section ul {
    padding-left: 20px;
}

.cta-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    text-align: center;
    border-left: 4px solid #3498db;
}

/* Contact Page Styles */
.contact-section {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.contact-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
}

.form-group textarea {
    min-height: 150px;
}

.contact-info {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.contact-info h3 {
    margin-bottom: 15px;
}

/* Privacy and Terms Pages Styles */
.privacy-section, .terms-section {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.privacy-section h2, .terms-section h2 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.effective-date {
    color: #7f8c8d;
    margin-bottom: 25px;
    font-style: italic;
}

.privacy-section h3, .terms-section h3 {
    color: #3498db;
    margin: 25px 0 15px;
}

.privacy-section p, .terms-section p,
.privacy-section ul, .terms-section ul {
    line-height: 1.6;
    margin-bottom: 15px;
}

.privacy-section ul, .terms-section ul {
    padding-left: 20px;
}