.rail-transport-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.rail-transport-page-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.rail-transport-page-header h1 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.rail-transport-page-header p {
    font-size: 1.125rem;
    color: #4b5563;
}

/* Grid Layout for Content Cards */
.rail-transport-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Card Styles */
.rail-transport-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
}

/* Specific Card for main features */
.rail-transport-features-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-top: 0;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.rail-transport-features-card p {
    margin-bottom: 1.25rem;
    color: #4b5563;
}

/* List Styles */
.rail-transport-features-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.rail-transport-features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.rail-transport-features-list li:last-child {
    margin-bottom: 0;
}

.rail-transport-features-list svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #22c55e;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.rail-transport-features-list strong {
    font-weight: 500;
    color: #374151;
}

.rail-transport-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.rail-transport-card p,
.rail-transport-card ul {
    color: #4b5563;
}

.rail-transport-card ul {
    list-style-position: inside;
    padding-left: 0;
    margin: 0;
}

.rail-transport-card ul li {
    margin-bottom: 0.25rem;
}

.rail-transport-divider {
    border: 0;
    height: 1px;
    background-color: #e5e7eb;
    max-width: 1200px;
    margin: 1rem auto;
}

/* Responsive Design */
@media (min-width: 768px) {

    .rail-transport-page-header h1 {
        font-size: 3rem;
    }

    .rail-transport-page-header p {
        font-size: 1.25rem;
    }

    .rail-transport-content-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rail-transport-features-card {
        grid-column: span 2 / span 2;
    }
}

@media (min-width: 1024px) {
    .rail-transport-content-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .rail-transport-features-card {
        grid-column: span 3 / span 3;
    }
}

.cta-block-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.cta-block-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2.5rem;
}

.cta-block-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .cta-block-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.cta-block-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.cta-block-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 1rem;
}

.cta-block-card p {
    color: #4b5563;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.cta-block-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    color: #374151;
}

.cta-block-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
}

.cta-block-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
}

.cta-block-buttons {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cta-block-button {
    display: inline-block;
    text-align: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s;
}

.cta-block-button-primary {
    background-color: #2563eb;
    color: #ffffff;
}

.cta-block-button-primary:hover {
    background-color: #1d4ed8;
}

.cta-block-button-secondary {
    background-color: #e5e7eb;
    color: #1f2937;
}

.cta-block-button-secondary:hover {
    background-color: #d1d5db;
}