.transport-services {
        background: #ffffff;
        border: 2px solid #f39500;
        border-radius: 12px;
        padding: 24px;
        margin: 30px 0 0 0;
        box-shadow: 0 6px 20px rgba(243, 149, 0, 0.12);
        position: relative;
        overflow: hidden;
    }

    .transport-services::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #f39500 0%, #ff9d1a 100%);
    }

    .transport-services__header {
        text-align: center;
        margin-bottom: 20px;
    }

    .transport-services__title {
        color: #2d3748;
        font-size: 20px;
        font-weight: 700;
        margin: 0 0 6px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .transport-services__title-icon {
        font-size: 24px;
    }

    .transport-services__subtitle {
        color: #718096;
        font-size: 14px;
        margin: 0;
        font-weight: 400;
    }

    .transport-grid-bottom {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .transport-item {
        background: linear-gradient(135deg, #fff9f0 0%, #fff5e6 100%);
        border: 1px solid #ffe0b3;
        border-radius: 10px;
        padding: 18px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .transport-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: #f39500;
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }

    .transport-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(243, 149, 0, 0.2);
        border-color: #f39500;
    }

    .transport-item:hover::before {
        transform: scaleY(1);
    }

    .transport-item__icon-wrapper {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #f39500 0%, #ff9d1a 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 12px;
        box-shadow: 0 4px 12px rgba(243, 149, 0, 0.25);
    }

    .transport-item__icon {
        font-size: 26px;
    }

    .transport-item__title {
        color: #2d3748;
        font-size: 16px;
        font-weight: 700;
        text-align: center;
        margin: 0 0 8px 0;
    }

    .transport-item__description {
        color: #4a5568;
        font-size: 13px;
        text-align: center;
        line-height: 1.5;
        margin: 0;
    }

    .transport-item__link {
        display: inline-block;
        color: #f39500;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
      text-align: center;
        margin-top: 8px;
        transition: color 0.3s ease;
    }

    .transport-item__link:hover {
        color: #d17f00;
        text-decoration: underline;
    }

    .transport-item__link::after {
        content: ' →';
    }

    .transport-services__footer {
        margin-top: 18px;
        padding-top: 18px;
        border-top: 1px dashed #e2e8f0;
        text-align: center;
    }

    .transport-services__cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, #f39500 0%, #ff9d1a 100%);
        color: #ffffff;
        padding: 12px 24px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        box-shadow: 0 4px 12px rgba(243, 149, 0, 0.3);
        transition: all 0.3s ease;
    }

    .transport-services__cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(243, 149, 0, 0.4);
    }

    .transport-services__cta-icon {
        font-size: 18px;
    }

    @media (max-width: 768px) {
        .transport-services {
            padding: 20px 16px;
            margin-top: 25px;
        }

        .transport-services__title {
            font-size: 18px;
        }

        .transport-services__title-icon {
            font-size: 22px;
        }

        .transport-grid-bottom {
            grid-template-columns: 1fr;
            gap: 12px;
        }

        .transport-item {
            padding: 16px;
        }

        .transport-item__icon-wrapper {
            width: 46px;
            height: 46px;
        }

        .transport-item__icon {
            font-size: 24px;
        }

        .transport-services__footer {
            margin-top: 16px;
            padding-top: 16px;
        }

        .transport-services__cta {
            font-size: 13px;
            padding: 10px 20px;
        }
    }

    @media (max-width: 480px) {
        .transport-services {
            padding: 16px 12px;
            border-radius: 10px;
        }

        .transport-services__title {
            font-size: 16px;
            flex-direction: column;
            gap: 4px;
        }

        .transport-services__subtitle {
            font-size: 13px;
        }

        .transport-item {
            padding: 14px;
        }

        .transport-item__icon-wrapper {
            width: 42px;
            height: 42px;
        }

        .transport-item__icon {
            font-size: 22px;
        }

        .transport-item__title {
            font-size: 15px;
        }

        .transport-item__description {
            font-size: 12px;
        }

        .transport-services__cta {
            width: 100%;
            justify-content: center;
        }
    }