
/* Technical Detail Cards */
.tech-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.detail-card {
    background: #fff;
    padding: 32px;
    border: 1px solid rgba(0,0,0,0.08);
    /* Square look as requested */
    border-radius: 4px; 
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* No hover effect as requested */
.detail-card:hover {
    transform: none;
    box-shadow: none;
}

.detail-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.detail-card-icon {
    width: 40px;
    height: 40px;
    background: #111;
    color: #ccff00;
    display: grid;
    place-items: center;
    border-radius: 4px;
    font-size: 1rem;
    flex-shrink: 0;
}

.detail-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: 1.3;
}

.detail-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    flex-grow: 1;
}

.detail-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8f9fa;
    padding: 16px;
    border-radius: 4px;
}

.detail-specs li {
    font-size: 0.85rem;
    color: #444;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.detail-specs li:last-child {
    margin-bottom: 0;
}

.detail-specs li::before {
    content: '•';
    color: #ccff00;
    font-weight: bold;
}

@media (max-width: 1200px) {
    .tech-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .tech-detail-grid {
        grid-template-columns: 1fr;
    }
}

/* Service Text Grid (New Addition) */
.service-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 4rem;
    padding: 0 1rem;
}

.service-item {
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.service-item:last-child,
.service-item:nth-last-child(2) {
    border-bottom: none;
}

.service-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-item h3 i {
    color: #ccff00;
    font-size: 1.2rem;
}

.service-item p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
}

@media (max-width: 768px) {
    .service-text-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-item:nth-last-child(2) {
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
}
