@font-face {
    font-family: "nato";
    src: url(./nato.ttf)
}

.robo {
    font-family: "nato";
}

body {
        font-family: "nato", Helvetica, sans-serif;
        margin: 0;
        background: #f7f7f7;
        color: #333;
        line-height: 1.5;
        background-color: #0a3d62;
    }

    .container {
        max-width: 1000px;
        margin: auto;
        padding: 20px;
    }

    header {
        background: #0a3d62;
        color: white;
        text-align: center;
        padding: 80px 20px;
        height: 100dvh;
        display:flex;
        justify-content: center;
        align-items: center;
    }

    header h1 {
        font-size: 42px;
        line-height: 38px;
    }

    header p {
        font-size: 20px;
        max-width: 700px;
        margin: auto;
    }

    .flex {
        display:flex;
        justify-content: center;
        align-items: center;
    }

    .flex-outer{
        display:flex;
        flex-direction: column;
        justify-content: center;
    }


    .button {
        display: inline-block;
        background: #2ee27c;
        color: hsl(240, 1%, 13%);
        padding: 15px 30px;
        margin: 10px 5px;
        text-decoration: none;
        font-size: 18px;
        font-weight: 500;
        border-radius: 5px;
    }

    .button2 {
        display: inline-block;
        background: hsl(340, 76%, 53%);
        color: hsl(240, 1%, 13%);
        padding: 15px 30px;
        margin: 10px 5px;
        text-decoration: none;
        font-size: 18px;
        font-weight: 500;
        border-radius: 5px;
    }

    .button:hover {
        background: #246b43;
    }

    section {
        background: white;
        margin: 30px auto;
        padding: 40px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    h2, h3 {
        margin-bottom: 20px;
        color:#0a3d62;
    }

    .columns {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .card {
        flex: 1;
        min-width: 250px;
        background: #fafafa;
        padding: 25px;
        border-radius: 8px;
        text-align: center;
        border: 1px solid #ddd;
    }

    .testimonial {
        background: #f0f0f0;
        padding: 20px;
        border-left: 5px solid #2ee27c;
        margin-bottom: 20px;
    }

    footer {
        background: #0a3d62;
        color: white;
        text-align: center;
        padding: 30px 10px;
        margin-top: 40px;
    }

    @media(max-width:700px) {

        header h1 {
            font-size: 32px;
        }

        .columns {
            flex-direction: column;
        }

    }

    @media(min-width:700px){
        .flex-outer{
        flex-direction: row;
        }
    }
    
