* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Source Sans 3", Arial, sans-serif;
      font-optical-sizing: auto;
      font-weight: 300;
      font-style: normal;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f4f2f0;
}

a {
    color: #123e2e;
    font-weight:700;
}

.logo img{
    max-width: 50%;
    width: 300px;
}

.cta-button {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #f04e30;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e03a1f;
}

main {
    padding: 20px;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #123e2e;
}
h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}
h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

div.content {
    max-width: 900px;
    margin: 0 auto;
}

p {
    font-size: 1.1rem;
    margin-top: 10px;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        margin-bottom: 10px;
    }

    .cta-button {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 8px 18px;
    }
}