/* Trust & Safety Page Specific Styles */
.trust-hero {
    background: linear-gradient(rgba(42, 157, 143, 0.9), rgba(42, 157, 143, 0.8));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.trust-hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.trust-hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.trust-container {
    padding: 60px 0;
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.trust-indicator {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.trust-indicator:hover {
    transform: translateY(-5px);
}

.trust-indicator i {
    font-size: 40px;
    color: #2a9d8f;
    margin-bottom: 20px;
}

.trust-indicator h3 {
    margin-bottom: 15px;
    color: #333;
}

/* Trust Navigation */
.trust-nav {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    position: sticky;
    top: 80px;
    z-index: 10;
}

.trust-nav ul {
    display: flex;
    list-style: none;
    overflow-x: auto;
    padding: 0;
    margin: 0;
}

.trust-nav li {
    flex: 1;
    min-width: 150px;
}

.trust-nav a {
    display: block;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: #666;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    white-space: nowrap;
}

.trust-nav a:hover {
    color: #2a9d8f;
    background-color: #f9f9f9;
}

.trust-nav a.active {
    color: #2a9d8f;
    border-bottom: 3px solid #2a9d8f;
    background-color: #f0f7f6;
}

/* Trust Content Sections */
.trust-content {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.trust-section {
    margin-bottom: 50px;
    scroll-margin-top: 100px;
}

.trust-section:last-child {
    margin-bottom: 0;
}

.trust-section h2 {
    font-size: 28px;
    color: #2a9d8f;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f7f6;
}

.trust-section h3 {
    font-size: 22px;
    color: #333;
    margin: 25px 0 15px;
}

.trust-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.trust-section ul,
.trust-section ol {
    margin-left: 20px;
    margin-bottom: 20px;
    color: #555;
}

.trust-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.trust-section a {
    color: #2a9d8f;
    text-decoration: none;
}

.trust-section a:hover {
    text-decoration: underline;
}

/* Security Badges */
.security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
    align-items: center;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
    min-width: 200px;
}

.security-badge i {
    font-size: 24px;
    color: #2a9d8f;
}

/* Verification Process */
.verification-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.verification-step {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.verification-step-number {
    width: 40px;
    height: 40px;
    background-color: #2a9d8f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 15px;
}

/* Privacy Controls */
.privacy-controls {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
}

.control-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.control-item:last-child {
    border-bottom: none;
}

.control-info h4 {
    margin-bottom: 5px;
    color: #333;
}

.control-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 0;
}

.control-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.control-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.control-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.control-toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .control-toggle-slider {
    background-color: #2a9d8f;
}

input:checked + .control-toggle-slider:before {
    transform: translateX(30px);
}

/* Compliance Badges */
.compliance-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.compliance-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #f0f7f6;
    border-radius: 10px;
    min-width: 150px;
    text-align: center;
}

.compliance-badge i {
    font-size: 40px;
    color: #2a9d8f;
    margin-bottom: 10px;
}

.compliance-badge span {
    font-weight: 600;
    color: #333;
}

/* Cookie Preferences */
.cookie-preferences {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
}

.cookie-category {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.cookie-category:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cookie-category h4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    color: #333;
}

.cookie-category p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.cookie-required {
    color: #2a9d8f;
    font-weight: 600;
    font-size: 12px;
}

/* FAQ Section */
.faq-section {
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f0f7f6;
}

.faq-question.active {
    background-color: #f0f7f6;
    color: #2a9d8f;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    margin-bottom: 10px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.contact-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    background-color: #f0f7f6;
}

.contact-card i {
    font-size: 40px;
    color: #2a9d8f;
    margin-bottom: 20px;
}

.contact-card h3 {
    margin-bottom: 15px;
    color: #333;
}

.contact-card p {
    color: #666;
    margin-bottom: 20px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.trust-badge {
    text-align: center;
    max-width: 150px;
}

.trust-badge img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    border-radius: 10px;
    object-fit: contain;
    background-color: white;
    padding: 10px;
}

.trust-badge span {
    display: block;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

/* Last Updated */
.last-updated {
    text-align: center;
    padding: 20px;
    background-color: #f0f7f6;
    border-radius: 5px;
    margin-top: 40px;
    color: #666;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .trust-nav ul {
        flex-direction: column;
    }
    
    .trust-nav li {
        width: 100%;
    }
    
    .trust-nav a {
        text-align: left;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
        border-right: 3px solid transparent;
    }
    
    .trust-nav a.active {
        border-right: 3px solid #2a9d8f;
        border-bottom: 1px solid #eee;
    }
    
    .trust-content {
        padding: 25px 20px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .control-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}