/* Services Base Layout Container */
.services-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 10px 0;
    font-family: inherit;
}

/* Section Main Header text */
.services-header h2 {
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0 0 6px 0;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.services-header p {
    color: #9ca3af;
    margin: 0;
    font-size: 0.9rem;
}

/* 2x2 Clean Services Grid Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* Individual Service Cards */
.service-card {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

/* Icon Wrap Blocks with Individual Glow Accents */
.service-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.blue-theme { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.green-theme { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.purple-theme { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.orange-theme { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }

/* Text Content details inside Cards */
.service-card h3 {
    font-size: 1.15rem;
    color: #ffffff;
    margin: 0 0 10px 0;
    font-weight: 500;
}

.service-card p {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1; /* Pushes the status badge cleanly to the bottom if text sizes vary */
}

/* Small System Activity Tag at card footers */
.service-status {
    align-self: flex-start;
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #6b7280;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500;
    letter-spacing: 0.02em;
}