* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: hsl(233, 47%, 7%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.card {
    background-color: hsl(244, 38%, 16%);
    border-radius: 8px;
    overflow: hidden;
    max-width: 1110px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 446px;
}

.content {
    padding: 72px 95px 72px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: hsl(0, 0%, 100%);
}

.highlight {
    color: hsl(277, 64%, 61%);
}

.description {
    font-size: 15px;
    line-height: 1.67;
    color: hsla(0, 0%, 100%, 0.75);
    margin-bottom: 72px;
    font-weight: 400;
}

.stats {
    display: flex;
    gap: 63px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: hsl(0, 0%, 100%);
}

.stat-label {
    font-size: 12px;
    font-weight: 400;
    color: hsla(0, 0%, 100%, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Lexend Deca', sans-serif;
}

.image-container {
    position: relative;
    background: linear-gradient(135deg, rgba(170, 92, 219, 0.6), rgba(170, 92, 219, 0.6));
    overflow: hidden;
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: hsl(277, 64%, 61%);
    mix-blend-mode: multiply;
    z-index: 2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-image {
    display: none;
}

/* Mobile styles */
@media (max-width: 768px) {
    body {
        padding: 24px;
        min-height: 130vh;
    }

    .card {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        max-width: 327px;
        text-align: center;
    }

    .image-container {
        order: -1;
        height: 240px;
    }

    .content {
        padding: 40px 32px 32px 32px;
        order: 1;
    }

    .title {
        font-size: 28px;
        margin-bottom: 16px;
        line-height: 1.14;
    }

    .description {
        font-size: 15px;
        line-height: 1.67;
        margin-bottom: 40px;
    }

    .stats {
        flex-direction: column;
        gap: 24px;
    }

    .stat {
        gap: 9px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }

    .desktop-image {
        display: none;
    }

    .mobile-image {
        display: block;
    }

}

@media (max-width: 375px) {
    .card {
        max-width: 100%;
    }
}