body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

.header {
    background: #fff;
    padding: 15px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

.logo {
    height: 40px;
    float: left;
}
nav {
   float: left;
}
nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
       float: left;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.btn-primary, .btn-orange, .btn-blue, .btn-outline {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}
.btn-primary {
    background: #6dc24b;
    color: #fff;
    margin-left: 37px;
}


.btn-primary { background: #6dc24b; color: #fff; }
.btn-orange { background: #ff5722; color: #fff; }
.btn-blue { background: #00bcd4; color: #fff; }
.btn-outline { border: 2px solid #6dc24b; color: #6dc24b; background: transparent; }

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 5%;
    background: #d9f7a6;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: #0c1b33;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero-image {
    width: 27em;
    height: 61em;
    margin-left: 0em;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.info-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.alt-bg {
    background: #f9f9f9;
}

footer {
    text-align: center;
    padding: 20px;
    background: #0c1b33;
    color: #fff;
}
