
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}


header {
    background-color: #f5f5f5;
    padding: 20px;
    text-align: right;
}

header .top-right {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}


.hero {
    text-align: center;
    padding: 80px 20px 40px;
    background-color: #eaeaea;
}

.hero h1 {
    font-size: 2.5rem;
}

.hero .highlight {
    color: deeppink;
}


.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 20px;
    gap: 40px;
}

.feature {
    display: flex;
    flex: 1 1 400px;
    align-items: center;
    gap: 20px;
}

.feature img {
    max-width: 50%;
    height: auto;
    border-radius: 10px;
}
