

.container {
    display: flex;
    background-color: #3568A4;
    color: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 900px;
    align-items: center;
	margin: auto;
		margin-top: 20px;
        margin-bottom: 20px;
}

.image-section img {
    width: 300px;
    height: auto;
    border-radius: 10px;

    box-shadow: 1px 12px 12px 10px rgba(20,20,20,0.75);
    -webkit-box-shadow: 1px 12px 12px 10px rgba(20,20,20,0.75);
    -moz-box-shadow: 1px 12px 12px 10px rgba(20,20,20,0.75);

    /* -webkit-box-shadow: 8px 25px 24px 6px rgba(66, 68, 90, 1);
    -moz-box-shadow: 8px 25px 24px 6px rgba(66, 68, 90, 1);
    box-shadow: 8px 25px 24px 6px rgba(66, 68, 90, 1); */
}

.content {
    margin-left: 20px;
}

.content h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.content p {
    font-size: 16px;
    line-height: 1.6;
    width: 90%;
}

.social-icons {
    margin: 15px 0;
}

.social-icons a {
    color: white;
    font-size: 20px;
    margin-right: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #78C1F3;
}

.btn {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #45a049;
}
.banner {
    width: 200px;

}
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
        margin-top: 20px;
    }

    .image-section img {
        width: 100%;
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .content {
        margin-left: 0;
        margin-top: 20px;
    }
    .content p {
        width: 100%;
    }
    .banner {
        width: 200px;
        margin-top: 20px;
    }
}