/* HIPAA Security Rule specific styles */
.subtitle {
    font-weight: 400;
    font-size: 0.75em;
    opacity: 0.9;
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.key-details {
    background-color: #e8f6f3; /* Light teal background */
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #d1f2eb;
}

.detail-item {
    margin-bottom: 15px;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item h4 {
    color: #117a65; /* Dark teal color */
    margin: 0 0 5px 0;
    font-size: 1rem;
}

.detail-item p {
    margin: 0;
    color: #148f77;
}

.status-active {
    color: #27ae60; /* Green */
    font-weight: 600;
}

/* Healthcare Icon */
.healthcare-icon-wrapper {
    margin-bottom: 15px;
}

.healthcare-icon-wrapper i {
    font-size: 3rem;
    color: white;
    opacity: 0.8;
}

/* Hero section specific to HIPAA */
.hero-section {
    background: linear-gradient(135deg, rgba(20, 143, 119, 0.9), rgba(17, 122, 101, 0.9)), url('../images/hipaa-hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

/* BAA Section */
.baa-section {
    background-color: #f8f9fa;
    border-left: 5px solid #1abc9c;
    padding: 30px;
    margin: 3rem 0;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.baa-section i {
    font-size: 3rem;
    color: #1abc9c;
    margin-top: 5px;
}

.baa-content h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #117a65;
}

.baa-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #444;
}

.baa-content .requirement-list li {
     margin-bottom: 8px;
}

/* Covered Entity Responsibilities Grid */
.requirement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 1rem;
    margin-bottom: 3rem;
}

.requirement-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.requirement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.requirement-item i {
    font-size: 2.5rem;
    color: #1abc9c; /* HIPAA theme teal */
    margin-bottom: 15px;
    display: block;
}

.requirement-item h4 {
    color: #117a65; /* Dark teal */
    margin-bottom: 10px;
    font-size: 1.15rem;
}

/* Safeguards Grid */
.safeguards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 1rem;
    margin-bottom: 3rem;
}

.safeguard-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

.safeguard-header {
    background-color: #1abc9c;
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.safeguard-header i {
    font-size: 1.8rem;
}

.safeguard-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.safeguard-body {
    padding: 20px;
    flex-grow: 1; /* Ensures body takes available space */
}

.safeguard-body p {
    margin-top: 0;
    margin-bottom: 15px;
    color: #555;
    font-size: 0.95rem;
}

.safeguard-body ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.safeguard-body li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #333;
}

/* Resource and Tool Cards */
.resource-card i,
.tool-card i {
    color: #1abc9c; /* HIPAA theme teal */
}

.resource-card .resource-link {
    color: #117a65;
}

/* Customizing buttons */
.btn-primary {
    background-color: #117a65;
}

.btn-primary:hover {
    background-color: #16a085;
}

.btn-secondary {
    border-color: #117a65;
    color: #117a65;
}

.btn-secondary:hover {
    background-color: #e8f6f3;
    color: #0e6655;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }
    .baa-section {
        flex-direction: column;
        text-align: center;
    }
     .baa-section i {
        margin-bottom: 15px;
    }
} 