/* Protect Rights Page Styles */

/* Page Header */
.protect-rights-header {
    text-align: center;
    margin-bottom: 15px;
}

.protect-rights-title {
    color: #1a1a2e;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.protect-rights-subtitle {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

/* Trust Badge */
.trust-badge {
    background: #60d049;
    padding: 15px;
    text-align: center;
    margin-bottom: 15px;
}

.trust-badge-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.trust-badge-text {
    text-align: right;
}

.trust-badge-title {
    color: #fff;
    font-size: 20px;
    margin: 0;
    font-weight: 700;
}

.trust-badge-description {
    color: rgba(255,255,255,0.9);
    margin: 15px 0 0 0;
    font-size: 16px;
}

/* Section Container */
.rights-section {
    background: #fff;
    padding: 15px;
    margin-bottom: 15px;
}

.rights-section-title {
    color: #1a1a2e;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

/* Rights List */
.rights-list {
    padding-right: 15px;
}

.rights-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: start;
}

.rights-item:last-child {
    margin-bottom: 0;
}

.rights-number {
    color: #1a1a2e;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.rights-item-title {
    color: #1a1a2e;
    font-size: 18px;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.rights-item-description {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Platform Guarantee Section */
.guarantee-section {
    background: #fff;
    padding: 15px;
    margin-bottom: 15px;
}

.guarantee-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    color: #1a1a2e;
}

.guarantee-item {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.guarantee-item:last-child {
    margin-bottom: 0;
}

/* Trust Indicators Grid */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.trust-indicator {
    background: #fff;
    padding: 15px;
    text-align: center;
}

.trust-indicator-icon {
    background: #60d049;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.trust-indicator-title {
    color: #1a1a2e;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.trust-indicator-description {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Company Legal Information */
.company-info-section {
    background: #fff;
    padding: 15px;
    margin-bottom: 15px;
}

.company-info-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    color: #1a1a2e;
}

.company-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.company-info-item {
    display: flex;
    align-items: start;
    gap: 15px;
}

.company-info-icon {
    background: #60d049;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.company-info-label {
    color: #1a1a2e;
    font-size: 16px;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.company-info-value {
    color: #666;
    margin: 0;
    font-size: 15px;
}

/* Legal Note */
.legal-note {
    background: #fff;
    padding: 15px;
    margin-top: 15px;
    border-right: 4px solid #60d049;
}

.legal-note-text {
    color: #1a1a2e;
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: #fff;
    padding: 30px 15px;
    text-align: center;
    margin-bottom: 15px;
}

.cta-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.cta-description {
    font-size: 17px;
    margin-bottom: 15px;
    color: #666;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: #60d049;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s;
}

.cta-btn-primary:hover {
    background: #50c039;
    color: #fff;
    text-decoration: none;
}

.cta-btn-secondary {
    background: #fff;
    color: #60d049;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    border: 2px solid #60d049;
    transition: all 0.3s;
}

.cta-btn-secondary:hover {
    background: #60d049;
    color: #fff;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .protect-rights-title {
        font-size: 20px;
    }
    
    .rights-section-title,
    .guarantee-title,
    .company-info-title {
        font-size: 20px;
    }
    
    .trust-badge-title {
        font-size: 18px;
    }
    
    .cta-title {
        font-size: 20px;
    }
}
