/* Social media icons styling */
.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.social-icon {
    width: 24px;
    height: 24px;
    margin: 0 8px;
    fill: #457b9d;
    transition: fill 0.3s ease;
}

.social-icon:hover {
    fill: #1d3557;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .profile-image {
        margin-right: 0;
        margin-bottom: 20px;
        text-align: center;
    }

    .profile-image img {
        width: 180px;
    }

    .content {
        width: 100%;
    }
}

@media (max-width: 480px) {
    main {
        padding: 1em;
    }

    .profile-image img {
        width: 150px;
    }

    .social-icon {
        width: 20px;
        height: 20px;
        margin: 0 6px;
    }
}
