/* Law Enforcement Page Specific Styles */
.law-enforcement-hero {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: #26262C;
    border-radius: 10px;
    border: 1px solid #444;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    margin-top: 10px;
}

.leo-benefits {
    background: #26262C;
    border: 1px solid #444;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.benefit-item {
    text-align: center;
    padding: 20px;
    background: #1B1B1F;
    border-radius: 8px;
    border: 1px solid #333;
}

.benefit-item svg {
    color: #6A0DAD;
    margin-bottom: 15px;
}

.benefit-item h4 {
    color: white;
    margin: 10px 0;
    font-size: 1.1rem;
}

.benefit-item p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

.verification-process {
    background: #26262C;
    border: 1px solid #444;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.process-header h3 {
    color: white;
    margin: 15px 0 10px 0;
}

.process-header p {
    color: #ccc;
    font-size: 1rem;
}

.contact-info {
    margin-top: 25px;
    padding: 20px;
    background: #1B1B1F;
    border-radius: 8px;
    border: 1px solid #333;
}

.admin-contact {
    font-size: 1.1rem;
}

.admin-email {
    color: #6A0DAD;
    font-weight: bold;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1.2rem;
}

.admin-email:hover {
    text-decoration: underline;
}

.contact-label {
    color: #999;
    font-size: 0.9rem;
    font-style: italic;
}

.email-requirements {
    background: #26262C;
    border: 1px solid #444;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

.requirements-intro {
    color: #ccc;
    margin-bottom: 20px;
    font-size: 1rem;
}

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #1B1B1F;
    border-radius: 8px;
    border: 1px solid #333;
}

.requirement-item svg {
    color: #6A0DAD;
    flex-shrink: 0;
    margin-top: 2px;
}

.requirement-content {
    flex: 1;
}

.requirement-content strong {
    display: block;
    color: white;
    margin-bottom: 4px;
    font-size: 1rem;
}

.requirement-content span {
    color: #ccc;
    font-size: 0.9rem;
}

.response-timeline {
    background: #26262C;
    border: 1px solid #444;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.timeline-header h3 {
    color: white;
    margin: 15px 0 10px 0;
}

.timeline-main {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.approval-process {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #1B1B1F;
    border-radius: 8px;
    border: 1px solid #333;
    text-align: left;
}

.step-number {
    background: #6A0DAD;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content strong {
    display: block;
    color: white;
    margin-bottom: 5px;
    font-size: 1rem;
}

.step-content p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

.important-notes {
    background: rgba(106, 13, 173, 0.1);
    border: 1px solid #6A0DAD;
    border-radius: 10px;
    padding: 25px;
}

.notes-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.notes-header h4 {
    color: white;
    margin: 0;
    font-size: 1.2rem;
}

.notes-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.notes-list li {
    color: #ccc;
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.4;
}

.notes-list li::before {
    content: "•";
    color: #6A0DAD;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.notes-list li strong {
    color: white;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .approval-process {
        gap: 15px;
    }

    .process-step {
        padding: 15px;
    }

    .requirement-item {
        padding: 12px;
        gap: 12px;
    }

    .law-enforcement-hero {
        padding: 20px;
    }
}