.cable-content {
    margin-bottom: 30px;
}

.cable-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cable-content p {
    font-size: 16px;
    color: #3e3e3e;
    line-height: 1.8;
    margin-bottom: 30px;
}

.download-btn {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background-color: #000000;
    padding: 12px 30px;
    border-radius: 4px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.download-btn i {
    margin-left: 8px;
}

.download-btn:hover {
    background-color: #a80000;
    transform: translateY(-3px);
    text-decoration: none;
}

.cable-image1 img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cable-image2 img {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.flex-md-row-reverse {
    flex-direction: row-reverse;
}

/* Smooth scrolling effect */
html {
    scroll-behavior: smooth;
}

.banner_cable {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    background-color: #f2f2f2;
}

.banner_cable img {
    width: 100%;
    max-height: 600px;
    height: auto;
    object-fit: cover;
    object-position: center;
}


@media (max-width: 768px) {
    .banner_cable img {
        max-height: 200px;
    }
}

@media (max-width: 480px) {
    .banner_cable img {
        max-height: 300px;
    }
}

.line-break {
    width: 75%;
    height: 2px;
    background-color: #6c0000;
    margin: 5px 200px;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .line-break {
        margin: 2px 60px;
        height: 2px;
    }
}

.section {
    display: auto;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.section img {
    max-width: 40%;
    height: auto;
}

.section-content {
    color: #000;
}

.section-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.section-content p.red {
    color: red;
    font-weight: bold;
}

.section-content ul {
    list-style-type: disc;
    margin-left: 20px;
}

.box {
    border: 2px solid #000;
    padding: 20px;
    margin-top: 50px;
    background-color: #f9f9f9;
    color: #000;
    font-weight: bold;
}

.section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin: 20px 2%;
    background-color: #f2f2f2;
    border-radius: 8px;
}

.content-right,
.content-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.content-left {
    flex-direction: row-reverse;
}

.content {
    flex: 1;
    margin: 0 20px;
}

.image {
    flex: 1;
    max-width: 50%;
}

.image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.red-text {
    color: red;
    font-weight: bold;
}

ul {
    list-style-type: disc;
    margin: 10px 0;
    padding-left: 20px;
}

.box {
    margin: 20px 10%;
    padding: 20px;
    background-color: #ffffff;
    border: 2px solid #802000;
    border-radius: 8px;
}

@media screen and (max-width: 768px) {
    .section {
        flex-direction: column;
        margin: 20px 5%;
    }

    .content-right,
    .content-left {
        flex-direction: column;
        align-items: flex-start;
    }

    .image {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .content {
        margin: 0;
    }

    .box {
        margin: 20px 5%;
    }
}