/* Reset default styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background-color: #26313c;
    color: white;
    padding: 15px;
}

.title {
    margin: 0;
}

/* Contact Section */
.contact-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item img {
    width: 150px; /* Standard size */
    height: auto;
    border-radius: 10px; /* Smooth edges */
    transition: transform 0.2s;
}

/* Hover Effect */
.contact-item img:hover {
    transform: scale(1.1);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Footer */
h5 {
    margin: 5px 0;
    font-size: 14px;
    color: #555;
}