.ach-7c01d3c3-wrapper {
    background-color: #f5f5f5;
    padding: 90px 15px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.ach-7c01d3c3-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.ach-7c01d3c3-left {
    width: 35%;
    display: flex;
    justify-content: center;
    padding-right: 40px;
    box-sizing: border-box;
}

.ach-7c01d3c3-right {
    width: 65%;
    box-sizing: border-box;
}

.ach-7c01d3c3-card {
    background: linear-gradient(135deg, #b30000 0%, #800000 100%);
    width: 280px;
    height: 420px;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: rotate(3deg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: floatCard-7c01d3c3 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.ach-7c01d3c3-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" opacity="0.05"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="1" fill="%23fff"/></svg>') repeat;
    pointer-events: none;
}

.ach-7c01d3c3-card:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 25px 45px rgba(179, 0, 0, 0.3);
}

.ach-7c01d3c3-card-inner {
    transform: rotate(-3deg);
    transition: transform 0.4s ease;
    z-index: 1;
}

.ach-7c01d3c3-card:hover .ach-7c01d3c3-card-inner {
    transform: rotate(0deg);
}

.ach-7c01d3c3-number {
    font-size: 90px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 10px;
}

.ach-7c01d3c3-label {
    font-size: 42px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.2;
}

.ach-7c01d3c3-desc {
    font-size: 20px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 50px;
}

.ach-7c01d3c3-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.ach-7c01d3c3-logo-item {
    flex: 1;
    text-align: center;
}

.ach-7c01d3c3-logo-item img {
    max-height: 120px;
    width: auto;
    max-width: 100%;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.4s ease;
    transform: scale(1);
}

.ach-7c01d3c3-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes floatCard-7c01d3c3 {
    0% { transform: translateY(0) rotate(3deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
    100% { transform: translateY(0) rotate(3deg); }
}

.ach-7c01d3c3-card:hover {
    animation-play-state: paused;
}

@media (max-width: 1024px) {
    .ach-7c01d3c3-left {
        width: 100%;
        padding-right: 0;
        margin-bottom: 60px;
    }
    .ach-7c01d3c3-right {
        width: 100%;
        text-align: center;
    }
    .ach-7c01d3c3-logos {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .ach-7c01d3c3-number {
        font-size: 70px;
    }
    .ach-7c01d3c3-label {
        font-size: 32px;
    }
    .ach-7c01d3c3-desc {
        font-size: 18px;
    }
    .ach-7c01d3c3-logos {
        flex-direction: column;
        gap: 40px;
    }
}