 /* Hero Section */
 /* ================= CUSTOMS BROKERAGE ================= */

 .service-section {
     padding: 80px 0;
     background: #fff;
 }

 .service-title {
     font-size: 38px;
     font-weight: 700;
     color: #000;
     margin-bottom: 20px;
 }

 .intro-text {
     color: #0056b3;
     font-size: 17px;
     line-height: 1.8;
     margin-bottom: 25px;
 }

 .service-section p {
     font-size: 15px;
     line-height: 1.9;
     color: #333;
     text-align: justify;
 }

 .customs-image-box {
     margin: 35px 0;
     border-radius: 12px;
     overflow: hidden;
 }

 .customs-img {
     width: 100%;
     height: 380px;
     object-fit: cover;
     display: block;
     transition: 0.4s ease;
 }

 .customs-img:hover {
     transform: scale(1.05);
 }

 .feature-heading {
     font-size: 34px;
     font-weight: 700;
     color: #003366;
     margin: 50px 0 25px;
 }

 .feature-card {
     background: #fff;
     border: 1px solid #e5e5e5;
     border-radius: 12px;
     padding: 25px;
     height: 100%;
     transition: 0.3s ease;
 }

 .feature-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
 }

 .feature-card h5 {
     color: #0056b3;
     font-size: 20px;
     font-weight: 700;
     margin-bottom: 15px;
 }

 .feature-card p {
     margin: 0;
     line-height: 1.8;
 }

 /* Sidebar */

 .service-box {
     width: 280px;
     background: #0056b3;
     color: #fff;
     margin-left: auto;
     margin-top: 20px;
 }

 .service-box ul {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .service-box ul li {
     padding: 14px 18px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.2);
     font-size: 15px;
 }

 .service-box ul li::before {
     content: "»";
     margin-right: 10px;
 }

 .service-section {
     padding: 90px 0;
     background: #fff;
 }

 .service-title {
     font-size: 42px;
     font-weight: 700;
     color: #003366;
 }

 .service-image img {
     width: 100%;
     height: 500px;
     object-fit: cover;
     border-radius: 15px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 }

 .intro-text {
     color: #0056b3;
     font-size: 18px;
     line-height: 1.8;
     margin-bottom: 25px;
 }

 .service-section p {
     font-size: 16px;
     line-height: 1.9;
     color: #444;
 }

 .expect-box {
     background: #f8f9fa;
     padding: 25px;
     border-left: 5px solid #0056b3;
     border-radius: 10px;
     margin-top: 30px;
 }

 .expect-box h4 {
     color: #003366;
     font-weight: 700;
     margin-bottom: 15px;
 }

 .expect-box ul {
     padding-left: 20px;
     margin: 0;
 }

 .expect-box ul li {
     margin-bottom: 12px;
     line-height: 1.7;
 }

 /* Responsiveness */

 @media (max-width: 992px) {

    .service-section {
        padding: 70px 20px;
    }

    .service-title {
        font-size: 32px;
    }

    .service-image img {
        height: 380px;
    }

    .feature-heading {
        font-size: 28px;
    }

    .service-box {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 768px) {

    .service-section {
        padding: 60px 15px;
        text-align: center;
    }

    .service-title {
        font-size: 26px;
    }

    .intro-text {
        font-size: 16px;
        text-align: center;
    }

    .service-section p {
        font-size: 15px;
        text-align: justify;
    }

    .service-image img {
        height: 300px;
    }

    .feature-heading {
        font-size: 24px;
        text-align: center;
    }

    /* FEATURES STACK */
    .feature-card {
        margin-bottom: 20px;
    }

    /* SIDEBAR FULL WIDTH */
    .service-box {
        width: 100%;
        margin-top: 30px;
    }

    .service-box ul li {
        font-size: 14px;
        padding: 12px 15px;
    }

    .expect-box {
        padding: 20px;
    }
}

@media (max-width: 480px) {

    .service-title {
        font-size: 22px;
    }

    .intro-text {
        font-size: 14px;
    }

    .service-section p {
        font-size: 14px;
    }

    .service-image img {
        height: 220px;
    }

    .feature-heading {
        font-size: 20px;
    }

    .feature-card h5 {
        font-size: 18px;
    }

    .feature-card p {
        font-size: 14px;
    }

    .service-box ul li {
        font-size: 13px;
    }

    .expect-box h4 {
        font-size: 18px;
    }

    .expect-box ul li {
        font-size: 14px;
    }
}