/* VALUES SECTION: Clean Minimal Grid */
.values-minimal-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.value-item-minimal {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    text-align: center;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.value-item-minimal:hover {
    transform: translateY(-5px);
}

.value-item-minimal .icon-clean {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.value-item-minimal h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.value-item-minimal p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}


/* SERVICES SECTION: Wide Horizontal Cards (Solid & Structured) */
.services-zigzag-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    border-color: rgba(131, 5, 41, 0.1);
}

.service-visual {
    flex-shrink: 0;
}

/* Restored .icon-circle-large as requested for standard icons */
.icon-circle-large {
    width: 80px;
    height: 80px;
    background-color: rgba(131, 5, 41, 0.08);
    /* Light primary bg */
    border-radius: 12px;
    /* Soft square instead of circle */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2.2rem;
    transition: all 0.3s ease;
}

.service-row:hover .icon-circle-large {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.service-content {
    flex: 1;
    text-align: left;
    /* Always left aligned */
}

.service-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.service-content p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .service-row {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .service-content {
        text-align: center;
    }

    .icon-circle-large {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
        margin-left: auto;
        margin-right: auto;
    }
}