body {
    font-family: 'Arial', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

.custom-page-breadcrumb {
    background-color: #f4f4f4;
    padding: 15px 20px;
    font-size: 14px;
    color: #666;
}

.custom-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.custom-support-intro h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.custom-support-intro h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.custom-support-intro p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.custom-team {
    background-color: #f9f9f9;
    padding: 60px 0;
    text-align: center;
}

.custom-team h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.custom-team-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.custom-team-list li {
    display: inline-block;
    margin: 0 15px;
    font-weight: 600;
}

.custom-team-members {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.custom-team-member {
    width: 150px;
    height: 150px;
    background-color: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.custom-team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.custom-why-rwd {
    padding: 60px 0;
    text-align: center;
}

.custom-why-rwd h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.custom-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
}

.custom-feature {
    width: 220px;
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: default;
}

.custom-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.custom-feature h3 {
    margin-top: 15px;
    font-size: 20px;
    margin-bottom: 10px;
}

.custom-feature p {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

.custom-icon {
    font-size: 36px;
    color: #0073e6;
}

.custom-global-service {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.custom-global-service h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.custom-strengths {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 0;
    list-style: disc inside;
    text-align: left;
    font-size: 16px;
    line-height: 1.6;
}

.custom-dual-backgrounds {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.custom-left-bg, .custom-right-bg {
    flex: 1 1 45%;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    font-size: 15px;
    line-height: 1.6;
}

.custom-help {
    padding: 60px 0;
    text-align: center;
}

.custom-help h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.custom-help-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.custom-help-card {
    display: block;
    width: 220px;
    padding: 20px;
    background-color: #0073e6;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}

.custom-help-card span {
    display: block;
    font-size: 14px;
    margin-top: 10px;
    opacity: 0.8;
}

.custom-help-card:hover {
    background-color: #005bb5;
}