.whatsapp {
    height: auto;
    width: 90%;
    max-width: 1200px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    margin: 150px auto 0;
    justify-content: center;
    align-items: center;
    background-color: #c7edf3;
    border-radius: 20px;
    box-shadow: 3px 3px 3px rgba(0,0,0,0.1);
}

a {
    white-space: wrap;
    margin: 0;
    padding: 0;
}

.whatsapp-inside {
    display: flex;
    position: relative;
    width: 92%; 
    height: auto;
    justify-content: space-between;
    align-items: center;
    padding: 6%;
    flex-wrap: wrap;
    gap: 20px;
}

.whatsapp-column1 {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 250px;
}

.column1-title {
    font-family: Inter, sans-serif;
    font-size: clamp(24px, 4vw, 34px);
    font-weight: 600;
    color: #323754;
    line-height: 1.4;
    margin-bottom: 10px;
}

.column1-paragraph {
    font-family: Poppins, sans-serif;
    font-size: clamp(16px, 3vw, 20px);
    max-width: 100%;
    color: #315E79;
    line-height: 1.5;
}

.whatsapp-column2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 0;
}

.icon-whatsapp {
    width: auto;
    height: 58px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
}

.box-1 {
    display: flex;
    width: 58px; /* Increased width */
    height: 58px;
    background-color: #c7edf3;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.fa-square-whatsapp {
    font-size: 58px; /* Increased size */
    color: #0abf3d;
}

.box-2 {
    display: flex;
    height: 58px;
    background-color: #c7edf3;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    justify-content: flex-start;
    align-items: center;
    margin-left: 1px; /* Reduced gap */
}

.join-button {
    font-family: Poppins, sans-serif;
    font-size: clamp(22px, 3vw, 24px);
    padding: 8px 24px;
    border: none;
    text-align: center;
    width: 100%;
    border-radius: 8px;
    background-color: #0abf3d;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.5s ease, box-shadow 0.5s ease;
}

.join-button:hover {
    box-shadow: 5px 5px 10px rgba(0,0,0,0.15);
    background-color: #315E79;
}
@media(max-width: 1100px){
    .whatsapp {
        margin: 120px auto 0;
    }
}
@media (max-width: 768px) {
    .whatsapp {
        margin: 100px auto 0;
    }
    .whatsapp-inside {
        flex-direction: column;
        text-align: center;
        padding: 10% 4%;
    }

    .whatsapp-column1 {
        align-items: center;
        margin-bottom: 20px;
    }

    .column1-title, 
    .column1-paragraph {
        text-align: center;
    }

    .whatsapp-column2 {
        width: 100%;
        justify-content: center;
    }
    .fa-square-whatsapp {
        font-size: 54px;
    }
    .icon-whatsapp {
        width: 100%;
        max-width: 300px;
    }

}