.product-specifications-new {
    border-radius: 12px;
    padding: 25px 20px;
}

.spec-item {
    text-align: center;
    padding: 8px 5px;
}

.spec-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.spec-value {
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    word-wrap: break-word;
}

.spec-value.text-primary {
    color: #24511D !important;
    font-weight: 600;
}

/* Project Stages Section */
.project-stages-section {
    background: #f2f9f1;
    padding: 30px 20px;
    margin-top: 30px;
}

.stages-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 40px;
}

.stages-container {
    max-width: 1200px;
    margin: 0 auto;
}

.stage-item {
    text-align: center;
    padding: 20px 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stage-icon {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.stage-number {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #24511D;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 600;
    border: 2px solid white;
}

.stage-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.3;
}

.stage-description {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 0;
    text-align: center;
}

/* Responsive Design for Specifications */
@media (max-width: 768px) {
    .product-specifications-new {
        padding: 20px 15px;
    }
    
    .spec-item {
        margin-bottom: 15px;
        padding: 8px;
    }
    
    .spec-label {
        font-size: 0.7rem;
    }
    
    .spec-value {
        font-size: 0.85rem;
    }
}

/* Responsive Design for Stages */
@media (max-width: 992px) {
    .project-stages-section {
        padding: 30px 20px;
    }
    
    .stages-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .stage-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .project-stages-section {
        padding: 25px 15px;
    }
    
    .stages-title {
        font-size: 1.3rem;
    }
    
    .stage-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .stage-number {
        width: 20px;
        height: 20px;
        font-size: 0.75rem;
    }
    
    .stage-title {
        font-size: 0.9rem;
    }
    
    .stage-description {
        font-size: 0.8rem;
    }
}