/* HERO */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 60px;
    background: linear-gradient(to right, #0b0f0c 45%, transparent),
                url('../assets/terps1.jpeg') center/cover;
}

.hero h1 {
    font-size: 40px;
    color: #fff;
}

.hero h1 span {
    color: #4ade80;
}

.hero p {
    color: #bbb;
    margin: 20px 0;
    max-width: 650px;
}

/* FEATURES */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 80px 60px;
}

.card {
    background: #111;
    padding: 25px;
    border-radius: 14px;
}

.card h3 {
    color: #4ade80;
}

/* ABOUT */
.about {
    display: flex;
    padding: 80px 60px;
    gap: 60px;
    align-items: center;
}

.about img {
    width: 100%;
    max-width: 500px;
}

/* MOBILE ABOUT */
@media (max-width: 768px) {
    .about {
        flex-direction: column;
        text-align: center;
    }

    .about img {
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 1080%;

    }
}

/* CTA */
.cta-box {
    text-align: center;
    padding: 80px 20px;
}

.cta-box img {
    margin-top: 20px;
    max-width: 150px;
}