/* Global Network Page Styles */
.global-network-description {
    color: black;
    font-size: 24px;
    font-family: Inter, sans-serif;
    font-weight: 400;
    line-height: 36px;
    word-wrap: break-word;
    text-align: center;
}

.global-network-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Global Network Flow Layout */
.global-network-flow {
    max-width: 1140px;
    margin: 40px auto;
}

/* Top text section */
.flow-text-section {
    width: 946px;
    margin: 40px auto ;
}

.flow-text-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.flow-text-item {
    display: flex;
    align-items: center;
    font-size: 18px;
    line-height: 29px;
    gap: 4px;
}

.flow-text-item .check-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.flow-list-item .check-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.flow-description {
    font-size: 16px;
    line-height: 21px;
    color: #000;
    margin-top: 25px;
}

/* Main flow layout */
.flow-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 80px;
}

/* Individual flow boxes */
.flow-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.flow-card {
    background-color: #00C08B;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    min-height: 113px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 212px;
}

.flow-card h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 8px 0;
    color: white;
    line-height: 1.4;
}

.flow-card p {
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

.flow-list {
    border: 1px solid #A2A9AD;
    border-radius: 8px;
    padding: 16px;
    background-color: white;
    width: 212px;
    min-height: 103px;
}

.flow-list-item {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 21px;
}

.flow-list-item:last-child {
    margin-bottom: 0;
}

/* Arrow styling */
.flow-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 0 20px;
}

.flow-arrow .arrow-shape {
    width: 100px;
    height: 74px;
    background: #A2A9AD;
    position: relative;
    clip-path: polygon(0 25%, 65% 25%, 65% 0%, 100% 50%, 65% 100%, 65% 75%, 0 75%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-arrow .arrow-shape .cs-text {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.flow-arrow .arrow-text {
    font-size: 14px;
    font-weight: bold;
    color: #000;
    text-align: center;
    line-height: 1.2;
}

/* Center label styling */
.flow-center-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.flow-center-label {
    background-color: white;
    border: 1px solid #A2A9AD;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    color: #000;
    text-align: center;
    min-width: 108px;
}

/* World Map Section */
.world-map-section {
    padding: 80px 0;
    margin-top: 60px;
}

.world-map-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.world-map-title {
    font-size: 32px;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
    font-family: Inter, sans-serif;
}

.world-map-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.6;
}

.world-map-image {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.world-map-image img {
    width: 100%;
    height: auto;
    max-width: 1000px;
}

/* Responsive design */
@media (max-width: 1200px) {
    .global-network-flow {
        max-width: 100%;
        padding: 0 50px;
    }
    
    .flow-text-section {
        width: 100%;
        max-width: 946px;
    }
    
    .flow-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: 15px 0;
    }
    
    .flow-arrow .arrow-text {
        transform: rotate(-90deg);
        margin-top: 10px;
        padding-right: 70px;
    }
}

@media (max-width: 768px) {
    .world-map-section {
        padding: 60px 0;
    }
    
    .world-map-title {
        font-size: 24px;
    }
    
    .world-map-description {
        font-size: 16px;
    }
}