@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

*{
    font-family: 'Lato', sans-serif !important;
}

.privacy-container {
    display: flex;
    margin-top: 5%;
    width: 70%;
    margin-left: 15%;
    gap: 2%;
    height: 40vh;
  
}

.privacy-text-container {
    width: 50%;
    margin-left: 25%;
    margin-right: 5%;
}

.privacy-text-container h1 {
    text-align: center;
    color: #E0EAFC;
}

.p-1 {
    background-color: #5B68D4;
    width: 25%;
    border-radius: 10px;
}

.p-2 {
    background-image: linear-gradient(to right, #CFDEF3, #E0EAFC);
    width: 25%;
    border-radius: 10px;
}

.p-3 {
    background-image: linear-gradient(to right, #CFDEF3, #E0EAFC);
    width: 50%;
    border-radius: 10px;
}

.tool-image {
    width: 100%;
    border-radius: 15px;
}

.chatbots-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.chatbots {
    font-size: 1.3em;
    margin: 20px;
    margin-bottom: 50px;
    color: #5B68D4;
    font-weight: 900;
}

.tools-text {
    font-size: 1.8em;
    margin: 20px;
    margin-bottom: 50px;
    color: #E0EAFC;
    font-weight: 900;
}

.privacy-h2 {
    font-size: 2em;
    color: #5B68D4;
    font-weight: 900;
    margin: 5%;
}

.privacy-p {
    font-size: 1.6em;
    color: #333;
    margin: 5%;
}

.privacy-btn {
    padding: 15px 25px;
    background-image: linear-gradient(to left, #CFDEF3, #E0EAFC);
    border: none;
    border-radius: 5px;
    color: #5368D7;
    font-weight: 700;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    margin-left: 27%;
    margin-bottom: 80px;
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    .privacy-container {
        flex-direction: column;
        align-items: center;
        width: 90%;
        margin-left: 5%;
    }

    .p-1, .p-2, .p-3 {
        width: 80%;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {

    .privacy-container{
        height: 90vh;
       
    }
    .p-1, .p-2, .p-3 {
        width: 90%;
        margin-bottom: 20px;
    }

    .tools-text, .chatbots, .privacy-h2 {
        font-size: 1.2em;
    }

    .privacy-p {
        font-size: 1em;
    }

    .privacy-btn {
        width: 80%;
        margin: 10px auto;
    }

    .privacy-text-container{
       opacity: 0;
       
    }
}
