﻿/** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}*/

/*body {
    font-family: 'Niveau Grotesk Bold',Helvetica,Arial,Lucida,sans-serif;
    line-height: 1.6;
    color: #333;
}*/

.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
/*header {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}*/

.logo {
    float: left;
    font-size: 24px;
    color: #0073e6;
}

/* Clear floats */
header::after {
    content: "";
    display: table;
    clear: both;
}

/* Hero Section */
.hero {
    color: rgb(37, 71, 72);
    padding: 50px 0;
    text-align: left;
}

    .hero h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .hero .btn {
        background-color: #FED815;
        color: rgb(37, 71, 72);
        padding: 12px 24px;
        text-decoration: none;
        width: 120px;
        font-size: 1.2em;
    }

/* Features Section */
.features {
    background-color: #f9f9f9;
    padding: 40px 0;
    text-align: center;
    font-family: 'HelHelvetica Bold',Helvetica,Arial,Lucida,sans-serif;
    color: rgb(37, 71, 72);
}

    .features h2 {
        margin-bottom: 40px;
        font-size:32px
    }

.feature-list {
    display: flex;
    flex-wrap: wrap;
    text-align:left;
}

.feature {
    width: 45%;
    margin-bottom: 20px;
    align-content: flex-start;
    padding: 10px;
}

    /*.feature h2{
        display: table-column;
    }
    .feature div{
        display: table-r;
    }*/
    .feature h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    /*.feature h3 i{
        padding-right:20px;
        display: table-column;
    }*/

    .feature p {
        font-size: 16px;
    }

/* Modules Section */
.modules {
    padding: 60px 0;
    text-align: center;
}

    .modules h2 {
        margin-bottom: 40px;
    }

    .modules ul {
        list-style: none;
        columns: 2;
        column-gap: 40px;
    }

    .modules li {
        margin-bottom: 10px;
        font-size: 16px;
    }

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}