* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

body {
    background: #f0f0f0;
    color: #333;
}

nav {
    height: 100px;
    background: #8968ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px; /* Adjusted value for logo height */
    margin-top: 0; /* Remove margin to align at the top */
    margin-bottom: 0; /* Remove margin to align at the top */
}

.nav-items a {
    text-decoration: none;
    color: #fff;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

.nav-items a:hover {
    color: #000;
}

.hero {
    background: #131722; /* Updated background color */
    color: #fff;
    padding: 2rem 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    gap: 2rem;
}

.column-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.column-left h1 {
    margin-bottom: 1rem;
    font-size: 3rem;
    line-height: 1.2;
}

.column-left p {
    margin-bottom: 2rem;
    font-size: 1.25rem;
    line-height: 1.5;
}

button {
    padding: 1rem 2rem;
    font-size: 1rem;
    border: none;
    color: #fff;
    background: #8968ff;
    cursor: pointer;
    border-radius: 50px;
    transition: background 0.3s ease, color 0.3s ease;
}

button:hover {
    background: #8968ff;
    color: #000;
}

.column-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
}

@media screen and (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .column-left h1 {
        font-size: 2.5rem;
    }

    .column-left p {
        font-size: 1rem;
    }

    .column-right {
        margin-top: 2rem;
    }
}
