.technical-section {
    width: 100%;
    padding: 40px 10%;
}

.technical-section h3 {
    margin-bottom: 20px;
    font-weight: 600;
}

.tech-spec-grid {
    width: 100%;
    border-collapse: collapse;
}

.tech-spec-grid th,
.tech-spec-grid td {
    border: 1px solid #ccc;
    padding: 12px;
    text-align: left;
}

.tech-spec-grid th.header-red {
    background-color: #DA1107;
    color: #fff;
    text-align: center;
}

.technical-section h3 {
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center; /* Tambahan agar judul berada di tengah */
}

/* Layout utama */
.product-section {
    display: flex;
    flex-wrap: wrap;
    padding: 60px 10%;
    gap: 50px;
    background-color: #f9f9f9;
    align-items: flex-start;
}

/* Gambar Produk */
.product-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-image img:hover {
    transform: scale(1.03);
}

/* Deskripsi Produk */
.product-description {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.product-description h2 {
    text-align: center;
    font-weight: 800;
    font-size: 32px;
    color: #000;
    margin-bottom: 10px;
}

.product-description h4 {
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    color: #DA1107;
    margin-bottom: 20px;
}

.product-description p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    text-align: justify;
}

/* Tombol Fitur / Spesifikasi */
.spec-table {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 30px;
}

.spec-table tr {
    background-color: #DA1107;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    padding: 12px 24px;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.spec-table tr:hover {
    background-color: #b70e06;
    transform: translateY(-2px);
}

.spec-table td {
    border: none;
    padding: 10px 20px;
}

/* Bagian Spesifikasi Teknis */
.technical-section {
    padding: 60px 10%;
    background-color: #fff;
    margin-top: 40px;
}

.technical-section h3 {
    text-align: center;
    font-size: 28px;
    color: #DA1107;
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
}

.tech-spec-grid {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 15px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.tech-spec-grid th,
.tech-spec-grid td {
    padding: 14px 18px;
    border: 1px solid #eee;
}

.tech-spec-grid th.header-red {
    background-color: #DA1107;
    color: white;
    text-align: center;
    font-weight: 600;
}

.product-section {
  display: flex;
  flex-wrap: wrap;
  padding: 50px 10%;
  gap: 40px;
}

.product-image {
  flex: 1;
  min-width: 300px;
}

.product-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-description {
  flex: 1;
  min-width: 300px;
}

.feature-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.feature-buttons button {
  background-color: #DA1107;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: left;
}

.feature-buttons button:hover {
  background-color: #001f3f; /* Biru dongker */
  color: #FFD700; /* Kuning */
}
.client-logos img,
.group-logos img {
  width: 180px;
  height: 120px;
  object-fit: contain;
}


        .product-section {
            display: flex;
            flex-wrap: wrap;
            padding: 50px 10%;
            gap: 40px;
        }
        .product-image {
            flex: 1;
            min-width: 300px;
        }
        .product-image img {
            width: 100%;
            max-width: 500px;
        }
        .product-description {
            flex: 1;
            min-width: 300px;
        }
        .product-description h2 {
            margin-bottom: 10px;
        }
        .spec-table, .technical-specs {
            margin-top: 20px;
            width: 100%;
            border-collapse: collapse;
        }
        .spec-table td, .technical-specs td {
            padding: 10px;
            border: 1px solid #ccc;
            cursor: pointer;
        }
        .spec-table tr:hover td {
            background-color: #f1f1f1;
        }
        .technical-specs td {
            cursor: default;
        }
        .product-bottom {
            margin-top: 40px;
            width: 100%;
        }