/* Main Container */
.safety-audit-page {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Banner */
.hero-banner {
  margin-top: 100px;
    background: #f5f7fa;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 5px;
    text-align: center;
}
.hero-banner h1 {
    color: #1a3e72;
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.hero-banner h1 span {
    color: #e67e22;
}
.hero-banner p {
    font-size: 1.2rem;
    color: #555;
}

/* Audit Sections */
.audit-section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}
.audit-section h2 {
    color: #1a3e72;
    font-size: 1.8rem;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e67e22;
    display: inline-block;
}

.audit-content {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

p{
  margin-top: 20px;
  padding: 10px;
}

ul li{
  margin-top: 10px;
  padding: 2px;
}

h4{
  margin-top: 15px;
  padding: 5px;
}

.audit-details {
    flex: 2;
}
.standards-box, .benefits-box {
    flex: 1;
    background: #dff7e0;
    padding: 20px;
    border-radius: 5px;
    border-left: 3px solid #1a3e72;
}

/* Lists */
.findings-list li {
    color: #d9534f;
    margin-bottom: 8px;
}
.solutions-list li {
    color: #5cb85c;
    margin-bottom: 8px;
}

/* CTA Section */
.audit-cta {
    text-align: center;
    padding: 40px;
    background: #1a3e72;
    color: white;
    border-radius: 5px;
    margin-top: 40px;
}
.audit-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}
.cta-buttons {
    margin-top: 25px;
}
.btn-primary {
    background: #e67e22;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    margin-right: 15px;
}
.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .audit-content {
        flex-direction: column;
    }
    .hero-banner h1 {
        font-size: 2rem;
    }
}