/* Transport Page Styles */
.transport-page {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
}

.transport-hero {
    text-align: center;
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.transport-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.transport-hero .lead {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto;
}

.transport-section {
    padding: 80px 0;
}

.gray-bg {
    background-color: #f9f9f9;
}

.transport-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

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

.transport-text {
    flex: 1;
}

.transport-image {
    flex: 1;
}

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

.image-caption {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 10px;
}

.transport-section h2 {
    color: #0066cc;
    margin-bottom: 25px;
    font-size: 2rem;
}

.transport-section h3 {
    color: #0066cc;
    margin: 25px 0 15px;
    font-size: 1.4rem;
}

.advantages-list {
    list-style-type: none;
    padding-left: 0;
}

.advantages-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
}

.advantages-list i {
    color: #0066cc;
    position: absolute;
    left: 0;
    top: 4px;
}

.services-list {
    list-style-type: none;
    padding-left: 0;
}

.services-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
}

.services-list i {
    color: #0066cc;
    position: absolute;
    left: 0;
    top: 4px;
}

.transport-conclusion {
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 25px;
    color: #0066cc;
}

.transport-cta {
    background-color: #0066cc;
    color: white;
    padding: 70px 0;
    text-align: center;
}

.transport-cta h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.transport-cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #0066cc;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .transport-content {
        flex-direction: column;
    }

    .reverse {
        flex-direction: column;
    }

    .transport-image {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .transport-hero {
        padding: 80px 0;
    }

    .transport-hero h1 {
        font-size: 2.2rem;
    }

    .transport-section {
        padding: 60px 0;
    }

    .transport-section h2 {
        font-size: 1.8rem;
    }
}