/* Styles for Terms and Privacy Pages */

/* Main content styling */
#content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    margin-top: 30px;
    margin-bottom: 30px;
}

/* Header styling */
.legal-header {
    background-color: #2196fa;
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 30px;
}

.legal-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #fff;
}

.legal-header h2 {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.9;
}

/* Section headings */
#content .section-heading {
    margin-bottom: 30px;
    border-bottom: 2px solid #2196fa;
    padding-bottom: 10px;
}

#content .section-heading h3 {
    font-size: 24px;
    color: #2196fa;
    margin-bottom: 5px;
}

#content .section-heading h2 {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

/* Content styling */
#content h3 {
    color: #2196fa;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

#content p {
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

#content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

#content li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #444;
}

/* Back to home button */
.back-home {
    display: inline-block;
    background-color: #2196fa;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(33, 150, 250, 0.3);
}

.back-home:hover {
    background-color: #0d8aee;
    color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(33, 150, 250, 0.4);
}

/* Responsive adjustments */
@media only screen and (max-width: 768px) {
    #content {
        padding: 30px 15px;
    }
    
    .legal-header {
        padding: 40px 15px;
    }
    
    .legal-header h1 {
        font-size: 28px;
    }
    
    .legal-header h2 {
        font-size: 16px;
    }
}

@media only screen and (max-width: 480px) {
    #content {
        padding: 20px 15px;
    }
    
    .legal-header {
        padding: 30px 15px;
    }
    
    .legal-header h1 {
        font-size: 24px;
    }
    
    #content .section-heading h3 {
        font-size: 20px;
    }
    
    #content h3 {
        font-size: 18px;
    }
}
