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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.section {
    width: 100%;
    min-height: 100vh;
    background-color: #a8d7e6;
}

.container {
    width: 80%;
    display: flex;
    margin: auto;
    padding-top: 100px;
    gap: 20px;
}

.content-section {
    width: 45%;
}

.image-section {
    width: 55%;
    display: flex;
    align-items: flex-start;
    margin-top: 50px;
}

.image-section img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

.content-section .title {
    text-transform: uppercase;
    font-size: 28px;
    color: #333;
}

.content-section .content h3 {
    margin-top: 10px;
    color: #36393a;
    font-size: 19px;
}

.content-section .content h2 {
    margin-top: 20px;
    color: #5d5d5d;
}

.content-section .content .button {
    margin-top: 30px;
}

.content-section .content .button a {
    background-color: #657162;
    padding: 12px 40px;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    letter-spacing: 1.5px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.content-section .content .button a:hover {
    background-color: #a52a2a;
    color: #fff;
}

.content-section .social {
    margin: 40px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.content-section .social a {
    text-decoration: none;
}

.content-section .social i {
    font-size: 30px;
    padding: 15px;
    transition: transform 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color: #fff;
}

/* Facebook Icon */
.content-section .social a:nth-child(1) i {
    background-color: #3b5998;
}
.content-section .social a:nth-child(1) i:hover {
    background-color: #365e7d;
}

/* WhatsApp Icon */
.content-section .social a:nth-child(2) i {
    background-color: #25D366;
}
.content-section .social a:nth-child(2) i:hover {
    background-color: #128C7E;
}

/* Instagram Icon */
.content-section .social a:nth-child(3) i {
    background-color: #E1306C;
}
.content-section .social a:nth-child(3) i:hover {
    background-color: #C13584;
}

/* Hover effect for icons */
.content-section .social i:hover {
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

/* Media Query for Tablets */
@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }
    
    .content-section, .image-section {
        width: 100%;
    }

    .content-section .title {
        text-align: center;
        font-size: 24px;
    }

    .content-section .content .button {
        text-align: center;
    }

    .content-section .social {
        text-align: center;
    }

    .content-section .social i {
        font-size: 25px;
    }
}

/* Media Query for Mobile */
@media screen and (max-width: 576px) {
    .content-section .social i {
        font-size: 20px;
    }

    .content-section .title {
        font-size: 22px;
    }
}
