@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.wa-acs-wrapper {
    background-color: #000000;
    color: #ffffff;
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.wa-acs-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Image Box */
.wa-acs-image-box {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.wa-acs-image-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.9);
}

/* Content Box */
.wa-acs-content-box {
    flex: 1;
    text-align: left;
}

.wa-acs-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.wa-acs-title .white {
    color: #ffffff;
}

.wa-acs-title .purple {
    color: #a855f7; /* Volandex Purple */
}

.wa-acs-description {
    margin-bottom: 40px;
}

.wa-acs-description p {
    font-size: 16px;
    color: #888888;
    line-height: 1.8;
    margin: 0 0 20px;
}

/* Stats Section */
.wa-acs-stats {
    display: flex;
    gap: 60px;
}

.wa-acs-stat-item {
    display: flex;
    flex-direction: column;
}

.wa-acs-stat-item .num {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5px;
}

.wa-acs-stat-item .label {
    font-size: 13px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .wa-acs-container {
        flex-direction: column;
        gap: 50px;
    }
    .wa-acs-image-box, .wa-acs-content-box {
        width: 100%;
        flex: none;
    }
    .wa-acs-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .wa-acs-wrapper {
        padding: 60px 20px;
    }
    .wa-acs-stats {
        gap: 30px;
    }
    .wa-acs-stat-item .num {
        font-size: 28px;
    }
}
