
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
header {
    text-align: center;
    background-color: #6200ea;
    color: white;
    padding: 20px 0;
}
header h1 {
    margin: 0;
    font-size: 2rem;
}
.highlight {
    margin-bottom: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
}
.highlight img {
    width: 300px;
    height: auto;
    margin-right: 20px;
    border-radius: 8px;
}
.highlight-content {
    flex: 1;
}
.highlight h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.highlight p {
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .highlight {
        flex-direction: column;
        text-align: center;
    }
    .highlight img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 20px;
    }
    .highlight h2 {
        font-size: 1.2rem;
    }
    .highlight p {
        font-size: 1rem;
    }
    .container {
        padding: 10px;
    }
}
