/* Desktop Details Transport Section Styles */
.details-transport-section {
    width: 100%;
    height: 96px;
    background-color: #FFBF3E;
    margin-top: 112px;
    margin-bottom: 0;
}

.details-transport-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    gap: 20px;
}

.details-icon-column {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    width: 48px;
    min-width: 48px;
    height: 100%;
}

.details-text-column {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    text-align: start;
    flex: 0 1 auto;
    padding: 0;
    gap: 4px;
}

.details-icon {
    width: 24px;
    height: 24px;
    margin-top: 17px;
}

.details-title-row {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
}

.details-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1E1E1E;
    margin-right: 8px;
}

.details-arrow-icon {
    width: 18px;
    height: 18px;
    margin-left: 8px;
    transform: rotate(270deg);
}

.details-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    margin-top: 4px;
    display: flex;
    align-items: start;
    justify-content: start;
    width: 100%;
}

/* Spacing for details page */
.details-transport-section + #country-webview-sections-container {
    margin-top: 78px;
} 