/* Privacy Policy and Terms Policy Pages Common CSS */

/* Main page area */
.privacy-policy-area,
.terms-policy-area {
    padding: 100px 0;
    background-color: #f9fafc;
}

/* Sidebar styles */
.privacy-sidebar,
.terms-sidebar {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
}

.widget-title {
    margin-bottom: 20px;
    font-size: 22px;
    position: relative;
    padding-bottom: 15px;
}

.widget-title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--theme-color);
}

.widget-links a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
    transition: all 0.3s ease;
}

.widget-links a:hover {
    color: var(--theme-color);
    padding-left: 5px;
}

.widget-links a i {
    margin-right: 8px;
    color: var(--theme-color);
}

.info-card {
    background-color: #f0f7ff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.info-card-icon {
    font-size: 30px;
    color: var(--theme-color);
    margin-bottom: 15px;
}

.info-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Content area styles */
.privacy-content,
.terms-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.content-header {
    text-align: center;
    margin-bottom: 40px;
}

.subheading {
    color: var(--theme-color);
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.title {
    font-size: 32px;
    margin-bottom: 20px;
}

.separator-line {
    display: flex;
    align-items: center;
    max-width: 300px;
    margin: 0 auto;
}

.separator-line .line {
    flex: 1;
    height: 1px;
    background-color: #ddd;
}

.separator-line .icon {
    margin: 0 15px;
    font-size: 20px;
    color: var(--theme-color);
}

/* Section styles */
.privacy-item,
.terms-item {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.privacy-item:last-child,
.terms-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.section-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--theme-color);
    opacity: 0.5;
    margin-right: 15px;
}

.privacy-title,
.terms-title {
    font-size: 24px;
    margin: 0;
}

.section-content p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

/* List styles */
.privacy-list li,
.terms-list li {
    display: flex;
    margin-bottom: 15px;
}

.privacy-list .icon,
.terms-list .icon {
    color: var(--theme-color);
    margin-right: 15px;
    margin-top: 3px;
}

.privacy-list .text,
.terms-list .text {
    flex: 1;
}

/* Info boxes */
.info-box,
.alert-box {
    background-color: #f0f7ff;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
}

.info-icon,
.disclaimer-header i,
.alert-box i {
    font-size: 24px;
    color: var(--theme-color);
    margin-right: 15px;
}

.alert-box i {
    color: #ff9800;
}

.info-content p {
    margin: 0;
}

/* Security features */
.security-features {
    margin: 20px 0;
}

.security-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.security-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.security-item i {
    font-size: 30px;
    color: var(--theme-color);
    margin-bottom: 15px;
}

.security-item h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.security-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Contact details */
.contact-details {
    background-color: #f9fafc;
    padding: 20px;
    border-radius: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    width: 30px;
    color: var(--theme-color);
}

.contact-item a {
    color: var(--theme-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Disclaimer and Limitation boxes */
.disclaimer-box,
.limitations-box {
    background-color: #fff8e1;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #ffc107;
}

.disclaimer-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.disclaimer-header h5 {
    margin: 0;
    font-size: 18px;
}

.limitations-box h5 {
    margin-bottom: 15px;
}

.limitations-box ul {
    margin: 0;
    padding-left: 20px;
}

.limitations-box ul li {
    margin-bottom: 8px;
}

/* Process steps */
.process-steps {
    margin: 20px 0;
}

.process-item {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.process-number {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: var(--theme-color);
    color: #fff;
    margin: 0 auto 15px;
    font-weight: 700;
}

.process-item h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.process-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
} 