.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #333, #666);
    border-radius: 2px;
}

.section-subhead {
    font-size: 1.1rem;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

.content-block {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 40px 50px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 100%;
    box-sizing: border-box;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #999;
}

.content-block h2 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 0;
    max-width: 100%;
}

/* Service and Benefit Lists */
.service-list, .benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-list li, .benefit-list li {
    color: #4a4a4a;
    padding: 15px 20px;
    background: #f8f8f8;
    border-radius: 10px;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.service-list li:hover, .benefit-list li:hover {
    background: #f0f0f0;
    border-color: #999;
    transform: translateX(5px);
    color: #1a1a1a;
}

.service-list li:before, .benefit-list li:before {
    content: '→';
    color: #666;
    font-weight: bold;
    margin-right: 12px;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.service-list li:hover:before, .benefit-list li:hover:before {
    transform: translateX(3px);
    color: #333;
}

/* Desktop Large (20+ inch screens) */
@media (min-width: 1600px) {
    .container {
        padding: 0 60px;
    }
    
    .content-block {
        padding: 50px 70px;
    }
    
    .content-block h2 {
        font-size: 2.2rem;
    }
    
    .content-block p {
        font-size: 1.2rem;
    }
    
    .service-list, .benefit-list {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 25px;
    }
    
    .service-list li, .benefit-list li {
        padding: 18px 25px;
        font-size: 1.1rem;
    }
}

/* Desktop Standard (17 inch, 15 inch screens) */
@media (min-width: 1200px) and (max-width: 1599px) {
    .container {
        padding: 0 50px;
    }
    
    .content-block {
        padding: 40px 60px;
    }
    
    .content-block h2 {
        font-size: 2rem;
    }
    
    .service-list, .benefit-list {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

/* Small Desktop / Laptop (13-14 inch screens) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .container {
        padding: 0 40px;
    }
    
    .content-block {
        padding: 35px 45px;
    }
}

/* Responsive Design for Tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-subhead {
        font-size: 1rem;
        padding: 0 20px;
        max-width: 100%;
    }
    
    .content-block {
        padding: 25px;
    }
    
    .content-block h2 {
        font-size: 1.5rem;
    }
    
    .content-block p {
        font-size: 1rem;
    }
    
    .service-list, .benefit-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-list li, .benefit-list li {
        padding: 12px 18px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .content-block {
        padding: 20px;
    }
    
    .content-block h2 {
        font-size: 1.3rem;
    }
    
    .content-block p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Animation for content blocks */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-block {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.content-block:nth-child(2) {
    animation-delay: 0.2s;
}

.content-block:nth-child(3) {
    animation-delay: 0.3s;
}

.content-block:nth-child(4) {
    animation-delay: 0.4s;
}

.content-block:nth-child(5) {
    animation-delay: 0.5s;
}

/* Subtle background effect for the section */
.section.reveal .container {
    position: relative;
}

.section.reveal .container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 0, 0, 0.02), transparent 70%);
    pointer-events: none;
    border-radius: 30px;
}

/* Optional: Add a subtle pattern for depth */
.section.reveal {
    background: #ffffff;
    position: relative;
}

.section.reveal:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
}

/* Additional refinement for headings */
.content-block h2 {
    letter-spacing: -0.02em;
}

/* List item refinement */
.service-list li, .benefit-list li {
    line-height: 1.4;
}

/* Optional: Add a subtle border-top for visual separation */
.section.reveal {
    border-top: 1px solid #f0f0f0;
}