* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f3f3f3;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
}

.banner {
    width: 100%;
    height: 400px;
    border-radius: 10px;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.connect {
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    border-radius: 10px;
}

.connect h1 {
    font-size: 2.5rem;
    color: #333;
}

.social-section {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-row {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.social-row a {
    display: flex;
    align-items: center;
    text-decoration: none;
    width: 100%;
}

.social-row img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.social-row span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

@media (max-width: 768px) {
    .banner {
        height: 200px;
    }

    .connect h1 {
        font-size: 2rem;
    }

    .social-row img {
        width: 40px;
        height: 40px;
    }

    .social-row span {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .connect h1 {
        font-size: 1.8rem;
    }

    .social-row img {
        width: 35px;
        height: 35px;
    }

    .social-row span {
        font-size: 1.2rem;
    }
}

