.content {
    margin-bottom: 30px;
}

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

.content p {
    font-size: 16px;
    color: #000000;
    line-height: 1.2;
    margin-bottom: 30px;
}

.content li {
    font-size: 16px;
    color: #000000;
}

.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);
}


/* Reversing row direction for cable 2 */
.flex-md-row-reverse {
    flex-direction: row-reverse;
}

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

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

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

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

@media (max-width: 480px) {
    .banner_esps 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 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;
}

.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%;
    }
}

/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding : 10px 0 
}

h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

h5 {
    font-size: 20px;
    margin-top: 20px;
    color: #555;
}

p {
    margin-bottom: 15px;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

hr {
    border: 1px solid #ddd;
    margin: 30px 0;
}

/* About Us Section */
.about_us_section {
    padding: 20px;
}

.about_us_section h4 {
    font-size: 28px;
    color: #333;
}

.about_us_section p {
    font-size: 16px;
    color: #666;
}

/* Basic Features Section */
.basic_features_section {
    padding: 20px;
}

.basic_features_section h4 {
    font-size: 28px;
    color: #333;
}

.basic_features_section h5 {
    font-size: 22px;
    color: #444;
}

.basic_features_section p {
    font-size: 16px;
    color: #666;
}

/* Products Section */
.products_section {
    padding: 20px;
}

.products_section h4 {
    font-size: 28px;
    color: #333;
}

.products_section .row {
    margin-bottom: 20px;
}

.products_section .product img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 15px;
}

.products_section .product h4 {
    font-size: 22px;
    color: #333;
}

.products_section .product p {
    font-size: 16px;
    color: #666;
}

/* Mobile View Styles */
@media (max-width: 768px) {

    .about_us_section,
    .basic_features_section,
    .products_section {
        padding: 15px;
    }

    .about_us_section h4,
    .basic_features_section h4,
    .products_section h4 {
        font-size: 24px;
    }

    .about_us_section p,
    .basic_features_section p,
    .products_section p {
        font-size: 14px;
    }

    .basic_features_section h5 {
        font-size: 18px;
    }

    .products_section .row {
        display: block;
    }

    .products_section .product {
        margin-bottom: 20px;
    }

    .products_section .product img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {

    .about_us_section h4,
    .basic_features_section h4,
    .products_section h4 {
        font-size: 20px;
    }

    .basic_features_section h5 {
        font-size: 16px;
    }

    .about_us_section p,
    .basic_features_section p,
    .products_section p {
        font-size: 12px;
    }
}


/* Margin space for the product rows */
.product, .two_block_container {
    margin-left: 20px;
}

@media (max-width: 768px) {
    .product, .two_block_container {
        margin-left: 10px;
    }
}

@media (max-width: 480px) {
    .product, .two_block_container {
        margin-left: 5px;
    }
}