/* ================================
   DanielOnDefense Services CSS
================================ */
/* Detailed Services Section */
.service-details {
    padding: 3rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.service-block {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-card);
    border-radius: 8px;
    margin-bottom: 3rem;
    border-left: 5px solid var(--accent-blue);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.service-content {
    padding: 2.5rem;
}

.service-content h3 {
    font-size: 1.8rem;
    color: var(--text-cream);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.features-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-cream);
    font-size: 0.95rem;
}

.features-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}