
body {
    background: #f0f0f0;
    font-family: Arial, sans-serif;
}

.card {
    width: 360px;
    margin: 40px auto;
    background: linear-gradient(135deg, #EFD7D7 60%, red 60%);
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    position: relative;
}

.views {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #0b84c1;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
}

.logo {
    background: #fff;
    width: 90px;
    height: 90px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    max-width: 70px;
}

h1 {
    font-size: 18px;
    margin-top: 15px;
}

h3 {
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 15px;
}

.buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.buttons a {
    flex: 1;
    background: #57c92d;
    text-align: center;
    padding: 8px;
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

.info p {
    font-size: 13px;
    margin: 8px 0;
}

.info i {
    color: red;
    margin-right: 6px;
}

.bottom-btns {
    display: flex;
    margin-top: 15px;
}

.bottom-btns button {
    flex: 1;
    border: none;
    padding: 10px;
    font-size: 13px;
    cursor: pointer;
}

.bottom-btns button:first-child {
    background: #1c6fa1;
    color: #fff;
}

.bottom-btns button:last-child {
    background: #aaa;
    color: #000;
}