﻿body {
    margin: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--background-light);
    color: #333;
}

#partner-network {
    background-color: #fff;
    padding: 60px 20px;
    border-radius: 18px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.intro h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 15px;
    border-bottom: 3px solid var(--primary);
    display: inline-block;
    padding-bottom: 5px;
}

.intro p, .outro p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #444;
}


.network-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

    .network-list li a {
        position: relative;
        display: inline-block;
        padding: 10px 15px;
        font-size: 1.05rem;
        color: var(--primary);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }

        .network-list li a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0%;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .network-list li a:hover::after {
            width: 100%;
        }

        .network-list li a:hover {
            transform: translateX(5px);
            color: var(--primary);
        }

.network-divider {
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    margin: 30px 0;
}

.top-divider {
    margin-top: 50px;
}

.bottom-divider {
    margin-bottom: 50px;
}

/* Responsive */
@media (max-width: 900px) {
    .network-list {
        grid-template-columns: 1fr;
    }
}
