/* General Container Styles */
.products-services-container {
    max-width: 864px;
    margin: 0 auto;
    background: #ffffff;
}

.products-services-item {
    display: grid;
    gap: 32px;
}

/* Main Title */
.main-title {
    font-size: 48px !important;
    color: #1F2023 !important;
    font-weight: 500 !important;
    letter-spacing: -2px !important;
    line-height: 1.149 !important;
}

/* Main Image */
.main-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.main-description,
.main-title,
.main-section-eyebrow {
    margin: 0;
}

/* Section Titles */
.section-title {
    font-size: 36px;
    color: #057A99; 
    font-weight: 500;
    line-height: 1.149;
    letter-spacing: 0px !important;
    margin: 0 !important;
}

.section-title-tech-spec {
    font-size: 36px;
    color: #057A99; 
    font-weight: 500;
    line-height: 1.149;
    letter-spacing: 0px !important;
    margin: 0 !important;
    padding-bottom: 16px;
}

/* Content Sections */
.content-section {
    display: grid;
    gap: 16px;
}

.content-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

/* Image Sections */
.image-section img {
    min-width: 100%;
    height: auto;
    /* margin-top: 15px; */
}

/* Technical Specs & Training Inclusions */
/* .technical-specs, .training-inclusions {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
} */

/* Swiper Container */
.swiper-container {
    overflow: hidden;
    position: relative;
}

.swiper-wrapper {
    display: flex;
    align-items: stretch;
}
.swiper-slide {
    flex: 0 0 100%;
    box-sizing: border-box;
}

/* Training Inclusions */
.training-inclusions ul {
    list-style-type: disc;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #63646A;
}

.training-inclusions ul li {
    font-size: 16px;
    line-height: 1.6;
    color: #63646A;
    position: relative;
}

.training-inclusions ul li::before {
    color: red;
    position: absolute;
    left: 0;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .swiper-slide {
        flex: 0 0 100%;
    }
}

/* TECHNICAL SPECIFICATIONS TABLE */
.technical-specs {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/* General Table Styling */
.tech-specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}

.category-title,
.spec-name,
.spec-value {
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    color: #63646A;
    padding: 10px 10px 5px 10px;
}


/* Category Title (First Column) */
.category-title {
    padding: 8px 0px;
    /* width: 35%; */
    width: 277px !important;
    vertical-align: top;
}

/* Product Name & Specification Value */
.spec-name {
    /* width: 40%; */
    width: 277px !important;
    vertical-align: top;
}

.spec-value {
    /* width: 25%; */
    width: 277px !important;
    text-align: left;
    vertical-align: top;
}

/* Separator Between Category Groups */
.category-separator td {
    border-bottom: 1px solid #61AED3;
    height: 5px;
}


