/* Modern Slavery Statement Styles */
.statement-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.statement-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid #218872;
}

.statement-header h1 {
    color: #218872;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.statement-date {
    color: #666;
    font-size: 1.1rem;
}

.statement-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.statement-section {
    margin-bottom: 2.5rem;
}

.statement-section h2 {
    color: #218872;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(33, 136, 114, 0.2);
}

.statement-section p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: #333;
}

.policy-list {
    background: rgba(33, 136, 114, 0.05);
    padding: 1.5rem 2rem;
    border-radius: 6px;
    margin: 1.5rem 0;
}

.policy-list h3 {
    color: #218872;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.policy-list ul {
    list-style-type: none;
}

.policy-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.policy-list li:before {
    content: "•";
    color: #218872;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.statement-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(33, 136, 114, 0.2);
    text-align: center;
    font-style: italic;
    color: #666;
}

@media (max-width: 768px) {
    .statement-container {
        margin: 2rem auto;
        padding: 0 1rem;
    }

    .statement-header h1 {
        font-size: 2rem;
    }

    .statement-section h2 {
        font-size: 1.5rem;
    }

    .statement-content {
        padding: 1.5rem;
    }
}