/* HIPAA Training Enhanced Content Sections */
.content-section {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.section-title {
    color: #1e40af;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 20px;
}

/* Two-column layout for content */
.two-column {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.column {
    flex: 1;
    min-width: 300px;
}

/* Feature box styling */
.feature-box {
    background-color: #f9fafb;
    border-left: 4px solid #3b82f6;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 0 4px 4px 0;
}

.feature-box h3 {
    margin-top: 0;
    color: #1e40af;
    font-size: 1.1rem;
}

/* Violation item styling */
.violation-item {
    background-color: #fee2e2;
    border-left: 4px solid #ef4444;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 0 4px 4px 0;
}

.violation-item h3 {
    margin-top: 0;
    color: #b91c1c;
    font-size: 1.1rem;
}

/* Prevention tip styling */
.prevention-tip {
    background-color: #e0f2fe;
    border-left: 4px solid #0ea5e9;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 0 4px 4px 0;
}

.prevention-tip h3 {
    margin-top: 0;
    color: #0369a1;
    font-size: 1.1rem;
}

/* Benefit item styling */
.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.benefit-icon {
    background-color: #dbeafe;
    color: #1e40af;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-weight: bold;
}

.benefit-item h3 {
    margin-top: 0;
    margin-bottom: 5px;
    color: #1e40af;
    font-size: 1.1rem;
}

/* Testimonial styling */
.testimonial {
    background-color: #f9fafb;
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 20px;
    position: relative;
}

.testimonial:before {
    content: "\201C";
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 4rem;
    color: #e5e7eb;
    line-height: 1;
}

.testimonial-content {
    padding-left: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    text-align: right;
    font-weight: 600;
    margin-top: 10px;
    color: #1f2937;
}

/* Update item styling */
.update-item {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.update-item:last-child {
    border-bottom: none;
}

.update-date {
    font-weight: 600;
    color: #1e40af;
}

.update-item h3 {
    margin-top: 5px;
    margin-bottom: 10px;
    color: #1f2937;
    font-size: 1.1rem;
}

/* Learning objectives list */
.learning-objectives {
    list-style-type: none;
    padding-left: 0;
}

.learning-objectives li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.learning-objectives li:before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #3b82f6;
}

/* Call to action button */
.cta-button {
    display: inline-block;
    background-color: #2563eb;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #1e40af;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .column {
        min-width: 100%;
    }
    
    .content-section {
        padding: 20px;
    }
    
    .benefit-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .benefit-icon {
        margin-bottom: 10px;
    }
    
    .testimonial:before {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .content-section {
        padding: 15px;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .two-column {
        gap: 10px;
    }
    
    .testimonial {
        padding: 15px;
    }
    
    .testimonial:before {
        font-size: 2rem;
    }
    
    .testimonial-content {
        padding-left: 10px;
    }
}