/* Reset and General Styling */
body {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    background-color: #f4f4f4;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Section */
header {
    background: linear-gradient(to right, #004c97, #007bff);
    color: #fff;
    padding: 20px;
    font-size: 1.5em;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Responsive Logo */
.logo-container {
    flex-shrink: 0;
}

.logo-container img {
    width: auto;
    max-width: 120px;
    height: auto;
    transition: 0.3s ease-in-out;
}

.logo-container img:hover {
    transform: scale(1.1);
}

/* Social Media Grid */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 50px;
    justify-content: center;
    flex: 1;
}

/* Social Media Card Styling */
.card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.card h2 {
    color: #333;
    font-size: 18px;
    margin: 0;
}

/* Sticky Footer */
footer {
    background: #333;
    color: white;
    padding: 15px;
    font-size: 14px;
    position: relative;
    bottom: 0;
    width: 100%;
    text-align: center;
}
