* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #3f559f;
    color: white;
}

.title {
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    margin-top: 100px;
    letter-spacing: 2px;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    padding: 60px 8%;
    align-items: flex-start;
    gap: 40px;
}

.left-side {
    width: 50%;
}

.left-side h3 {
    font-weight: 300;
    margin-bottom: 25px;
}

.form-box {
    background: #e6e6e6;
    padding: 25px;
    border-radius: 10px;
    color: #333;
}

.form-box h4 {
    margin-bottom: 15px;
    color: #3f559f;
}

.form-box input,
.form-box textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.form-box textarea {
    height: 100px;
    resize: none;
}

.form-box button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 20px;
    background: #20a844;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.form-box button:hover {
    background: #178c38;
}

.note {
    font-size: 10px;
    margin-top: 8px;
    text-align: center;
    color: #777;
}

.right-side {
    width: 40%;
    text-align: center;
}

.or {
    font-size: 40px;
    margin: 40px 0 20px 0;
    font-weight: 300;
}

.chat-btn {
    background: #20a844;
    padding: 18px 30px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.chat-btn:hover {
    background: #178c38;
}

.social {
    margin-top: 50px;
}

.social p {
    margin-bottom: 20px;
}

.icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.icons i {
    font-size: 50px;
    color: #20a844;
    transition: 0.3s;
    cursor: pointer;
}

.icons i:hover {
    transform: scale(1.1);
}

.second-nav {
    margin: 60px 0;
    display: flex;
    justify-content: center;
}

.offices {
    text-align: center;
    padding: 20px 8% 100px 8%;
}

.offices h2 {
    font-size: 40px;
    margin-bottom: 40px;
}

.office-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.office {
    width: 45%;
}

.office h4 {
    margin-bottom: 15px;
    font-weight: 400;
}

iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
}

@media(max-width:992px) {
    .contact-container {
        flex-direction: column;
    }

    .left-side,
    .right-side {
        width: 100%;
    }

    .office {
        width: 100%;
    }
}

@media (max-width:768px){
.title{
    font-size:30px;
    margin-top:110px;
}

.contact-container{
    flex-direction:column;
    padding:40px 20px;
    gap:40px;
}

    .left-side,
    .right-side {
        width: 100%;
    }

    .form-box {
        padding: 20px;
    }

    .form-box input,
    .form-box textarea {
        font-size: 13px;
    }

    .chat-btn {
        font-size: 16px;
        padding: 14px 22px;
    }

    .icons {
        gap: 20px;
    }

    .icons i {
        font-size: 35px;
    }

    .offices h2 {
        font-size: 28px;
    }

    .office-grid {
        flex-direction: column;
        gap: 30px;
    }

    .office {
        width: 100%;
    }

    iframe {
        height: 220px;
    }

}