/* styles.css */

* {
    margin: 5px;
    padding: 5px;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

a {
    text-decoration: none;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
}

header {
    background: #ffff;
    padding: 20px 0;
}

header nav {
    display: flex;
    justify-content: space-between;
}

header .logo img {
    max-height: 250px;
}

.hero {
    background: #4b6cb7;
    background: linear-gradient(to right, #4b6cb7, #182848);
    padding: 50px 0;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
}

.hero h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 10px 30px;
    font-size: 18px;
    border-radius: 5px;
}

.features {
    padding: 50px 0;
    text-align: center;
}

.features h3 {
    font-size: 30px;
    margin-bottom: 30px;
}

.features .feature {
    margin-bottom: 20px;
}

.features h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.features p {
    font-size: 16px;
}

.headline {
    font-size: 30px;
    color: #4b6cb7;
    margin-bottom: 5px;
}

.section-headline {
    font-size: 30px;
    text-align: center;
    justify-content: center;
    margin-bottom: 10px;
}
footer {
    background: #f4f4f4;
    padding: 30px;
    text-align: center;
}

@media screen and (min-width: 768px) {
    header nav {
        align-items: center;
    }

    .features {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .features .feature {
        text-align: left;
    }
}
