* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000;
}

.container {
    display: flex;
}

.card {
    width: 230px;
    padding: 15px;
    margin: 0 20px;
    background: #23032ca2;
    border-radius: 30px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .04);
    transition: .4s ease;
}

.card:hover {
    transform: scale(1.05);
}

.card .card-image {
    position: relative;
    width: 200px;
    height: 200px;
    padding: 20 20px;
    text-align: center;
    background: #23032ca2;
    border-radius: 12px;
}

.card .card-image img {
    width: 100%;
    transition: .4s ease;
}

.card:hover .card-image img {
    transform: scale(1.02)
               rotate(-3deg)
               translateX(-5px);
}

.card .card-image .bx-star {
    cursor: pointer;
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 10px;
    font-size: 20px;
    color: red;
    background: #00000063;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .04);
}

.card .card-content h3 {
    color: whitesmoke;
    font-size: 16px;
    margin-top: 20px;
}

.card .card-content p {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin: 8px 0 22px;
    text-align: justify;
}

.card .card-content button {
    cursor: pointer;
    color: #fff;
    width: 100%;
    height: 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(
        45deg, #ccc2a8, #eb9616
    );
}

.page-title {
    text-align: center;
    margin-bottom: 50px;
}

.page-title h1 {
    color: white;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 100px;
}

.page-title p {
    color: #ccc;
    font-size: 20px;
}

.footer {
    margin-top: 60px;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 20px;
}

.footer h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.footer p {
    font-size: 18px;
    line-height: 1.6;
    color: #d3d3d3;
}

.new-section {
    margin-top: 50px;
    width: 100%;
    text-align: center;
}

.new-section h2 {
    color: white;
    margin-bottom: 40px;
        font-weight: 700;
    font-size: 48px;
}

.new-section .card-content p {
        color: #ccc;
    font-size: 10px;
    text-align: center;
}

.second-container .card .card-image {
    position: relative;
    width: 200px;
    height: 200px;
    padding: 20 20px;
    text-align: center;
    background: #23032ca2;
    border-radius: 12px;
}

.second-container .card .card-image img {
    width: 100%;
    transition: .4s ease;
}


.second-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer2 {
    margin-top: 60px;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 20px;
}

.footer2 h2 {
    font-size: 22px;
    margin-bottom: 15px;
}

.footer2 p {
    font-size: 14px;
    line-height: 1.6;
    color: #d3d3d3;
    margin-bottom: 15px;
}

@media (max-width: 1280px) {
    body {
        height: unset;
        padding: 30px 0;
    }

    .container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .page-title {
        flex-wrap: wrap;
        justify-content: center;
    }

    .page-title h1 {
        margin: 20px;
    }

    .container .card {
        margin: 20px;
    }
}