﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: white;
}

.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    min-height: 82vh;
    width:100%;
}

.content {
    max-width: 50%;
}

    .content h1 {
        font-size: 3em;
        margin-bottom: 20px;
        color: #394cc5;
        font-weight: 700;
    }

    .content p {
        font-size: 1.2em;
        color: black;
        line-height: 1.6;
    }

.image {
    max-width: 50%;
    display: flex;
    justify-content: center;
}

    .image img {
        max-width: 100%;
        height: auto;
    }

@media (max-width: 1000px){
    .hero-section {
        justify-content: center;
        flex-direction:column-reverse;
    }
    .image {
        margin-bottom: 50px;
        max-width: 80%;
    }
    .content {
        max-width: 80%;
    }

        .content h1 {
            font-size: 1.5em;
        }

        .content p {
            font-size: 1em;
            color: black;
            line-height: 1.6;
        }
    .hero-section {
        min-height: 80vh;
    }
}

.privacy-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #eff3ff;
    margin-bottom: 50px;
    padding: 50px 20px;
}

.privacy-container-heading{
    font-size: 20px;
    color: darkblue;
    margin-bottom: 20px;
}

.privacy-container-content p{
    font-size: 1rem;
    margin-bottom:10px;
}