.sw-wrapper-a5198876 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    padding: 30px 15px;
    background: #fdfdfd;
}

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

/* Header styling */
.sw-header-panel {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sw-main-heading {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    color: #1a202c;
}

.sw-intro-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #4a5568;
}

/* Grid Layout */
.sw-grid-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: stretch;
}

@media (max-width: 991px) {
    .sw-grid-container {
        grid-template-columns: 1fr;
    }
}

/* Features List Styling */
.sw-section-subtitle {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sw-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sw-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sw-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.sw-feature-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    font-size: 20px;
    flex-shrink: 0;
}

.sw-card-content {
    flex-grow: 1;
}

.sw-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 8px 0;
}

.sw-card-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #718096;
    margin: 0;
}

/* Fleet Banner Side Card styling */
.sw-fleet-card {
    position: relative;
    background-color: #1a202c;
    background-image: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    border-radius: 16px;
    padding: 40px;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.sw-fleet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 80%);
    pointer-events: none;
}

.sw-fleet-content {
    position: relative;
    z-index: 2;
}

.sw-fleet-icon-header {
    font-size: 44px;
    color: #f7fafc;
    opacity: 0.9;
    margin-bottom: 24px;
}

.sw-fleet-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
}

.sw-fleet-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 30px;
}

.sw-fleet-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sw-fleet-tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    backdrop-filter: blur(4px);
}
