
.waterjet-specs {
    font-family: 'Segoe UI', Arial, sans-serif;
    max-width: 1440px;
    margin: 0 auto;
    color: #333;
}

.overview-card {
    background: linear-gradient(135deg, #F1302B 0%, #A02020 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(241, 48, 43, 0.25);
}

.overview-card h2 {
    margin: 0 0 15px 0;
    font-size: 28px;
}

.highlight {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
    opacity: 0.9;
}

.features-section, .specs-section {
    margin-bottom: 40px;
}

h3 {
    font-size: 22px;
    color: #202020;
    border-bottom: 2px solid #202020;
    padding-bottom: 10px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.feature-card {
    background: #FFF9F9;
    border: 1px solid #FFE0E0;
    border-radius: 8px;
    padding: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(241, 48, 43, 0.15);
    border-color: #F1302B;
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: #F1302B;
}

.feature-card h4 {
    margin: 0 0 12px 0;
    font-size: 18px;
    color: #F1302B;
}

.feature-card p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

.specs-table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(241, 48, 43, 0.1);
    border: 1px solid #FFE0E0;
}

.spec-row {
    display: flex;
    border-bottom: 1px solid #FFE0E0;
    padding: 18px 20px;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-name {
    flex: 1;
    font-weight: 600;
    color: #202020;
}

.spec-value {
    flex: 1;
    text-align: right;
    color: #202020;
}

@media (max-width: 768px) {
    .spec-row {
        flex-direction: column;
    }
    .spec-value {
        text-align: left;
        padding-top: 8px;
    }
}
