* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: verdana, arial, helvetica, sans-serif;
    color: black;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    margin: auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    width: auto;
}

.logo h2 {
    font-size: 1.5rem;
    font-weight: 600;
}

.text-orange {
    color: #EE5623;
}

.text-purple {
    color: #490274;
}

.text-green {
    color: #90BC0D;
}

.text-blue {
    color: rgb(0, 112, 192);
}

.highlight-orange {
    color: rgb(238, 86, 35);
}

.hero {
    margin: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 850px;
    margin-bottom: 2rem;
}

@media (max-width: 600px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}