
/* Layout styles */

body, html{
    margin: 0;
    padding: 0;
}

#main{
    padding:0;
    margin:0;
}

#hero {
    background: linear-gradient(0deg, rgba(231, 236, 255, 1) 0%, rgba(235, 234, 255, 1) 50%, rgba(231, 236, 255, 1) 100%);
    text-align: center;
    padding: 100px 0;

    @media (max-width: 450px) {
        padding: 50px 0;
    }

    .container{
        margin:0 auto;
        max-width: 1080px;

        /* For screens smaller than max-width */
        @media (max-width: 1100px) {
            padding: 0 20px;
        }

        .logo{

            @media (max-width: 500px) {
                width: 190px;
                height: auto;
            }

        }

        img.screenshot {
            box-shadow: 0 4px 20px 0 rgba(163, 171, 201, 0.52);
            border-radius: 20px;

            /* For screens smaller than max-width */
            @media (max-width: 1100px) {
                width: 100%;
                height: auto;
            }

        }

        .heading{
            margin:0 auto;
            padding:0 120px;
            @media (max-width: 1000px) {
                padding: 0 70px;
            }
            @media (max-width: 900px) {
                padding: 0;
            }
        }
    }

}

#usps {
    background: white;
    text-align: center;
    padding: 50px 0;
    max-width: 1300px;
    margin:0 auto;

    @media (max-width: 500px) {
        padding: 25px 0;
    }

    .heading{
        margin:0 auto;
    }
    .container{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive columns */
        gap: 20px; /* Space between panels */
        padding: 20px; /* Padding around the grid */

        /* For screens smaller than 768px (e.g., tablets) */
        @media (max-width: 1100px) {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* Two columns on tablet */
        }

        /* For screens smaller than 480px (e.g., mobile phones) */
        @media (max-width: 480px) {
                grid-template-columns: 1fr; /* Single column on mobile */
        }
    }
    .panel{
        padding: 50px 10px;
        text-align: center;
        border-radius: 20px;
        box-shadow: 0 4px 20px 0 rgba(163, 171, 201, 0.52);

        p {
            padding: 0 20px;
        }
    }
}

#people{
    padding:0;
    margin:25px 0 0 0;
    line-height: 0;
    width: 100%;

    img{
        width: 100%;
        height: auto;
        line-height: 0;
    }
}

#footer{
    background-color: #0D2138;
    width: 100%;
    padding: 80px 0 150px 0;

        img {
            float: left;
            padding-left: 50px;
            @media (max-width: 768px) {
                padding-left: 25px;
            }
        }
        p {
            float: right;
            color: white;
            padding-right: 50px;
            @media (max-width: 768px) {
                padding-right: 25px;
            }
        }
}

/* Button styles */

a.hero-button {
    background-color: #2F5AFB;
    color: white;
    padding: 10px 30px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    border: none;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for hover effect */
    margin-bottom: 50px;
    display: inline-block;
    @media (max-width: 500px) {
        margin-bottom: 25px;
    }
}

a.hero-button:hover {
    background-color: #2A51E2;
    color: white;
}


/* Typography styles */


body {
     font-family: 'Noto Sans', sans-serif;
 }

h1{
    font-family: "Noto Sans";
    font-size: clamp(1.9rem, 6vw, 3rem);
    line-height: clamp(2.4rem, 6vw, 3.7rem);
    font-weight: 700;
    text-align: center;
    padding-bottom: 5px;

    @media (max-width: 500px) {
        padding-bottom: 5px;
    }

}


h2{
    font-family: "Noto Sans";
    font-size: clamp(1.7rem, 5vw, 2.7rem);
    line-height: clamp(2.1rem, 5vw, 3.2rem);
    font-style: normal;
    font-weight: 700;
    text-align: center;
    padding: 0 40px;
}

h3{
    font-family: "Noto Sans";
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    line-height: clamp(1.5rem, 4vw, 1.8rem);
    font-style: normal;
    font-weight: 700;
    text-align: center;
}

p {
    font-size: 1em;
    line-height: 1.5em;
}
