/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

body {
    background-color: #f6f7f8;
    padding: 24px;
}

/* CONTAINER */
.container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

/* CARD */
.card {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}

/* HEADER */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e6e6e6;
}

.card-header h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #111;
}

.card-header p {
    margin-top: 6px;
    font-size: 1rem;
    color: #777;
    max-width: 220px;
}

.card-header img {
    height: 110px;
    border-radius: 10px;
    object-fit: cover;
}

/* FEATURES */
.feature {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid #e6e6e6;
}

.feature:last-of-type {
    border-bottom: none;
}

.feature i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e9f9ef;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.feature h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #111;
}

.feature p {
    font-size: 0.95rem;
    color: #666;
}

.feature > div:last-child,
.feature p:last-child {
    justify-self: end;
    font-weight: 500;
    color: #111;
}

/* BUTTON */
.cta {
    margin-top: auto;
    padding: 16px;
    background: transparent;
    border: 2px solid #111;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 767px) {
    .card-header {
        flex-direction: column;
    }

    .card-header img {
        align-self: flex-end;
    }
}

/* TABLET & DESKTOP */
@media (min-width: 768px) {
    .container {
        grid-template-columns: repeat(3, 1fr);
    }
}
