
    body { font-family: Arial, sans-serif; line-height: 1.6; margin: 0; padding: 0; color: #333; }
    .container { max-width: 980px; margin: auto; overflow: auto; padding: 0 2rem; }
    header { text-align: center; padding: 1.5rem 0; border-bottom: 1px solid #eee; }
    .site-title a { text-decoration: none; color: inherit; }
    nav { margin-top: 20px; }
    nav a { padding: 10px 15px; text-decoration: none; color: #0055cc; font-weight: bold; margin: 0 10px; }
    nav a:hover { text-decoration: underline; }
    main { padding: 2rem 0; }
    footer { text-align: center; padding: 2rem 0; margin-top: 2rem; border-top: 1px solid #eee; font-size: 0.9em; color: #777; }
    .portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
    .portfolio-item { border: 1px solid #eee; padding: 1rem; background: #fdfdfd; }
    .portfolio-item img { max-width: 100%; height: auto; display: block; margin-bottom: 1rem; }
    .portfolio-item h3 { font-size: 1.1em; margin-top: 0.5rem; font-weight: normal; }
    .portfolio-item h3 a { text-decoration: none; color: #333; }
    .portfolio-item h3 a:hover { text-decoration: underline; }
    .contact-info { display: flex; justify-content: center; align-items: center; gap: 20px; margin-top: 2rem; }
    .contact-info a { display: inline-block; }
    .social-icon { height: 50px; width: auto; }
    .profile-picture {
        width: 400px;
        height: 400px;
        border-radius: 50%;
        object-fit: cover;
        display: block;
        margin: 0 auto 2rem;
    }
    @media (max-width: 768px) { 
        .portfolio-grid { grid-template-columns: 1fr; }
        .profile-picture { width: 250px; height: 250px; }
    }

```css
/* --- Custom Style to Adjust Header Spacing --- */
.site-title p {
    margin-bottom: 0px !important;
    margin-top: 0px !important;
    line-height: 1.2 !important; /* This controls the line spacing */
}

.site-title p:first-child {
    margin-bottom: -5px !important; /* Pulls the subtitle up */
}


/* =================================================================== */
/* --- MOBILE OPTIMIZATION STYLES (768px and below) --- */
/* =================================================================== */

@media (max-width: 768px) {

    /* 1. Reduce overall side padding to give content more space */
    .container {
        padding: 0 1rem;
    }

    /* 2. Make the header title smaller */
    .site-title p:first-child {
        font-size: 36px !important;
    }
    .site-title p:last-child {
        font-size: 18px !important;
        margin-top: -5px !important; /* Adjust spacing for new size */
    }

    /* 3. Stack the navigation links vertically for easy tapping */
    nav {
        display: flex;
        flex-direction: column; /* Stack the links on top of each other */
        align-items: center; /* Center them horizontally */
        gap: 15px; /* Add space between the stacked links */
        margin-top: 1.5rem;
    }
    nav a {
        margin: 0; /* Remove horizontal margins */
        width: 100%; /* Make each link take the full width */
        text-align: center;
    }

    /* 4. Adjust main heading sizes */
    main h2 {
        font-size: 1.8em;
    }
    
    /* 5. Clean up the portfolio grid for mobile */
    .portfolio-grid {
        /* This changes the grid to a single column on mobile */
        grid-template-columns: 1fr;
        gap: 40px; /* Increase gap slightly for a vertical list */
    }
    
    /* 6. Fix the "About Me" two-column layout */
    .about-container {
        text-align: center; /* Center the image and text */
    }
    .about-image {
        margin: 0 auto 2em auto; /* Center the image with space below */
    }
    
    /* 7. Fix the "Podcast" two-column layout */
    .podcast-container {
         text-align: center;
    }
     .podcast-image {
        margin: 0 auto 1.5em auto;
    }

}