/* Center Alignment Fixes for Mobile */
@media (max-width: 768px) {

    /* Center Section Headers */
    .section-header {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        text-align: center;
        width: 100%;
    }

    /* Center About Section */
    .about-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .personal-info {
        width: 100%;
        justify-content: center;
    }

    .info-item {
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    /* Center Contact Section */
    .contact-info {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
        width: 100%;
    }

    /* Center Footer Content */
    .footer-content {
        text-align: center;
        align-items: center;
    }

    .footer-logo {
        margin-bottom: 10px;
    }
}