#card-section {
    margin: 60px 0;
}
#card-section > div {
    max-width: 1200px;
    margin: 0 auto;
}
#card-section > div > div:first-child {
    text-align: center;
    margin-bottom: 30px;
}
#card-section > div > div:first-child > h2 {
    font-family: Sahel-Bold;
    font-size: 30px;
    color: var(--color0703);
    margin: 0 0 16px;
}
#card-section > div > div:first-child > div {
    width: 290px;
    height: 4px;
    background: linear-gradient(90deg, var(--color0701), var(--color0702));
    border-radius: 2px;
    margin: 0 auto;
}
#card-section > div > div:last-child {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
}
#card-section > div > div:last-child > div {
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 10px 8px;
    position: relative;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
#card-section > div > div:last-child > div.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
#card-section > div > div:last-child > div:nth-child(even) {
    margin-top: 60px;
}
#card-section > div > div:last-child > div > div:first-child {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}
#card-section > div > div:last-child > div > div:first-child > div {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--color0701) 0%, var(--color0702) 100%);
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    z-index: 1;
}
#card-section > div > div:last-child > div:hover > div:first-child > div {
    transform: scale(1.08) rotate(5deg);
}
#card-section > div > div:last-child > div > div:first-child > div > i {
    font-size: 2rem;
    color: var(--color0704);
}
#card-section > div > div:last-child > div > div:first-child > span {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color0704);
    color: var(--color0701);
    font-size: 0.7rem;
    font-weight: 800;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color0701);
    z-index: 2;
}
#card-section > div > div:last-child > div > h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color0703);
    margin: 0 0 10px;
    line-height: 1.4;
}
#card-section > div > div:last-child > div > p {
    font-size: 0.82rem;
    color: color-mix(in srgb, var(--color0703) 70%, transparent);
    line-height: 1.7;
    margin: 0 0 16px;
}
#card-section > div > div:last-child > div > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color0701);
    text-decoration: none;
    padding: 6px 16px;
    border: 1.5px solid color-mix(in srgb, var(--color0701) 30%, transparent);
    border-radius: 50px;
    transition: all 0.3s ease;
}
#card-section > div > div:last-child > div > a:hover {
    background: var(--color0701);
    color: var(--color0704);
    border-color: var(--color0701);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px color-mix(in srgb, var(--color0701) 30%, transparent);
}
#card-section > div > div:last-child > div > a > i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}
#card-section > div > div:last-child > div > a:hover > i {
    transform: translateX(-3px);
}
@media (max-width: 900px) {
    #card-section > div > div:last-child > div {
        width: 180px;
    }
    #card-section > div > div:last-child > div:nth-child(even) {
        margin-top: 50px;
    }
}
@media (max-width: 600px) {
    #card-section {
        margin: 40px 0;
    }
    #card-section > div > div:last-child {
        gap: 16px;
    }
    #card-section > div > div:last-child > div {
        width: 150px;
        margin: 8px 4px;
    }
    #card-section > div > div:last-child > div:nth-child(even) {
        margin-top: 8px;
    }
    #card-section > div > div:last-child > div > div:first-child {
        width: 90px;
        height: 90px;
    }
    #card-section > div > div:last-child > div > div:first-child > div {
        width: 90px;
        height: 90px;
    }
    #card-section > div > div:last-child > div > div:first-child > div > i {
        font-size: 1.5rem;
    }
}