/* Environmental Compliance Service Page Styles */
:root {
    --primary-color: #5bc1ac;
    --secondary-color: #5a6f80;
    --text-dark: #333333;
    --text-light: #666666;
    --background-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

/* Header Section */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.header .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.header .tagline {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Main Content */
.main-content {
    background: var(--white);
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
    background: var(--background-light);
}

.intro-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Paragraph Styling */


.pNew:first-of-type {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--secondary-color);
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin-bottom: 30px;
}



/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 60px 0;
    }
    
    .header h1 {
        font-size: 2.5rem;
    }
    
    .header .tagline {
        font-size: 1.1rem;
    }
    
    .intro-section {
        padding: 60px 0;
    }
    
    .intro-section .container {
        padding: 0 15px;
    }
    
    .pNew {
        font-size: 1rem;
        text-align: left;
    }
    
    .pNew:first-of-type {
        font-size: 1.1rem;
        padding-left: 15px;
    }
    
    .check li {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .check li i {
        margin-right: 12px;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .header .tagline {
        font-size: 1rem;
    }
    
    .check li {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .check li i {
        margin-bottom: 8px;
        margin-right: 0;
    }
}

/* Additional Enhancements */
.check li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.check li:hover::before {
    opacity: 1;
}


/* Focus states for accessibility */
.check li:focus-within {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}