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

body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #6dd5ed, #2193b0);
    color: #fff;
    text-align: center;
    overflow: hidden;
    padding: 20px;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.content {
    max-width: 700px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    backdrop-filter: blur(15px);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.content:hover {
    transform: scale(1.03);
}

.logo {
    width: 150px;
    margin-bottom: 20px;
}

h1 {
    font-size: 2em;
    font-weight: 500;
    margin-bottom: 15px;
}

p {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: #f0f0f0;
    line-height: 1.6;
    font-weight: 300; /* Updated font-weight */
    text-align: justify;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

social-icons img {
    width: 50px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        max-width: 90%;
        padding: 30px;
    }

    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
        text-align: left;
    }

    .logo {
        width: 120px;
    }

    .social-icons img {
        width: 40px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .content {
        max-width: 100%;
        padding: 20px;
    }

    .logo {
        width: 100px;
    }

    h1 {
        font-size: 1.7em;
    }

    p {
        font-size: 0.95em;
        line-height: 1.5;
        text-align: center;
    }

    .social-icons img {
        width: 35px;
    }
}
