/* Universal Box-Sizing for consistent width calculations */
html {
    box-sizing: border-box;
}
*, *::before, *::after {
    box-sizing: inherit;
}

/* General Body Styles */
body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e6e4e0; /* Light background */
    color: #333f42; /* Charcoal text */
    overflow-x: hidden;
}

/* Base Headings for overall consistency */
h1, h2, h3 {
    font-family: 'Poppins', sans-serif; /* Using Poppins as a web-safe alternative for Aptos Bold */
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #333f42; /* Charcoal for headings */
}

/* Specific heading for ABOUT MILLIAN QUINTEROS and other H4s */
.final-text-block h4,
.podcast-section h4 { /* Added podcast-section for consistency */
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #108bcb; /* Blue for H4 in content sections */
    font-size: 1.8em; /* Make H4 a bit larger */
    margin-bottom: 20px;
}

/* CV Specific Headings and Sections */
/* The main CV sections are now within content-section and also have class cv-section */
.cv-section h2 {
    color: #108bcb; /* Blue for main CV section titles */
    font-size: 2.2em; /* Slightly larger for main sections */
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #108bcb; /* A subtle blue line under main headings */
    text-align: left; /* Ensure left alignment for CV sections */
}

.cv-section h3 {
    color: #333f42; /* Charcoal for sub-section titles (Job Titles) */
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 5px; /* Less space between title and dates */
    text-align: left;
}

.cv-section .job-meta {
    font-style: italic;
    color: #666; /* Lighter color for dates/location */
    margin-bottom: 15px;
    display: block; /* Ensure it takes its own line */
    text-align: left;
}


/* Header Bar Styles */
.header-bar {
    background-color: #3a3737; /* Darker charcoal */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

/* Main Logo Responsiveness */
.header-logo-area {
    text-align: center;
    padding: 10px 0;
    flex-shrink: 0;
    width: 100%;
}
.header-logo-area img {
    /* Default max-width for mobile/smaller screens */
    max-width: 250px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Hamburger Menu Styling (Mobile Only) */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 20;
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
}
.hamburger-menu .bar {
    width: 100%;
    height: 3px;
    background-color: #e6e4e0; /* Light color for hamburger bars */
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}
.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}
.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}
.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* Main Navigation Bar */
.header-main-nav {
    text-align: center;
    padding: 10px 0;
    width: 100%;
}
.header-main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.header-main-nav a {
    font-family: 'Lato', sans-serif;
    text-decoration: none;
    color: #e6e4e0; /* Light color for navigation links */
    font-weight: normal;
    padding: 8px 15px;
    display: block;
    font-size: 0.95em;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
}
.header-main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 2px;
    background-color: #f6630a; /* Blue underline on hover/active */
    transition: width 0.3s ease, left 0.3s ease;
    transform: translateX(-50%);
}
.header-main-nav li.active a,
.header-main-nav a:hover {
    background-color: transparent;
    color: #f6630a; /* Blue on hover/active */
}
.header-main-nav li.active a::before,
.header-main-nav a:hover::before {
    width: 100%;
    left: 50%;
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 20px auto;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    align-items: stretch;
    background-color: #e6e4e0;
}
.hero-text-area {
    flex: 1 1 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.hero-image-area {
    flex: 1 1 50%;
    background-color: #3a3737; /* Charcoal background for hero image */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 60px 40px;
    text-align: center;
}
.hero-image-area img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: none;
}

/* Millian Profile Pic Specific Styling (hero-text-area) */
.hero-text-area img {
    width: 100%; /* Ensures it scales up to its natural size or container width */
    max-width: 400px; /* Limits its maximum size on larger screens */
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 15px; /* Rounded corners for profile pic */
    box-shadow: 0 8px 16px rgba(0,0,0,0.3); /* Cool drop shadow */
}

/* General Content Section Styles */
.content-section {
    background-color: white; /* All content sections after hero will be white */
    color: #333f42; /* Charcoal text for content sections */
    width: 100%; /* Ensure it spans full width of its parent */
    max-width: 1200px; /* Limits its maximum width */
    margin: 20px auto 40px auto;
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center; /* Default text alignment, overridden by specific elements */
    display: flex; /* Added for the two-column layouts */
    flex-direction: column; /* Default to column for small screens */
    align-items: center;
    justify-content: center;
}
.content-section h2 {
    color: #3a3737; /* Blue for section headings */
    margin-bottom: 20px;
}
.content-section p {
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: left; /* Default text in content sections to left */
}
/* Ensure default H4s within content sections match style */
.content-section h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.8em;
    color: #108bcb;
    margin-bottom: 20px;
    text-align: left; /* Default to left for consistency */
}


/* Lists within content sections */
.content-section ul,
.content-section ol { /* Added ol for ordered lists */
    list-style-type: disc; /* Or 'none' if preferred, but disc is typical for lists */
    padding-left: 25px; /* Indent list items more */
    text-align: left; /* Align list items to the left */
    margin-bottom: 15px;
    margin-left: 0; /* Ensures consistent left alignment by removing browser default margin */
}
.content-section li {
    margin-bottom: 10px; /* More space between list items */
    line-height: 1.7; /* Increased line-height for readability */
}

/* Style for text blocks that contain an image and text (like final-text-block) */
.content-section.final-text-block {
    flex-direction: row; /* Default to row for desktop */
    align-items: flex-start; /* Align items to the top for better text flow next to image */
    text-align: left; /* Text alignment for desktop */
    padding: 30px;
    display: flex; /* Ensure flex behavior */
    flex-wrap: nowrap; /* Prevent wrapping on desktop, handle text overflow within its own div */
    justify-content: center; /* Center overall content */
}

.content-section.final-text-block > div:first-child { /* Image container */
    flex-shrink: 0;
    margin-right: 40px;
    width: auto; /* Allow image to take its natural width */
    text-align: left;
    /* Removed min-width, flex-basis from here, let image size naturally */
}

.content-section.final-text-block img {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.content-section.final-text-block .final-text-content { /* Text content for two-column layout */
    flex-grow: 1;
    flex-shrink: 1; /* Allow the text content to shrink if needed */
    flex-basis: 0; /* Important for flex-grow to work correctly with content-heavy blocks */
    min-width: 300px; /* A reasonable minimum width for text content on desktop */
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.content-section.final-text-block h2,
.content-section.final-text-block h3,
.content-section.final-text-block p {
    text-align: left; /* Ensure text within content areas is left-aligned */
}

/* Modifier class to swap image and text columns */
.content-section.final-text-block.image-right {
    flex-direction: row-reverse;
}

.content-section.final-text-block.image-right > div:first-child {
    margin-right: 0;
    margin-left: 40px;
}


/* Call to Action Button Styles */
.cta-button {
    font-family: 'Lato', sans-serif;
    background-color: #f6630a; /* Blue button */
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 55px;
    font-weight: bold;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
    border: none; /* Ensure no default border */
    cursor: pointer;
}
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0d79a6; /* Slightly darker blue on hover */
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.cta-button:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(16, 139, 203, 0.4);
}
.cta-button:hover::before {
    transform: scaleX(1);
}

/* Contact Form Specific Styles */
.contact-form-section {
    background-color: #333f42; /* Charcoal background for contact form */
    color: white;
    padding: 60px 40px; /* Keep outer padding */
}
.contact-form-section h2 {
    color: #e6e4e0; /* Light color for contact heading */
    margin-bottom: 30px;
}
.contact-form {
    /* Removed display: flex and flex-direction: column */
    margin: 0 auto;
    width: 100%; /* Allows form to take full width of its parent */
    /* Individual form groups will be centered */
}
.form-group {
    display: block; /* Make form groups block-level to stack vertically */
    width: 100%; /* Form group takes 100% of the form width */
    max-width: 900px; /* Max width for fields on very large screens for readability */
    margin: 0 auto 20px auto; /* Center the form group and add bottom margin */
}
.form-group label {
    font-family: 'Lato', sans-serif;
    font-size: 1em;
    color: #e6e4e0; /* Light color for labels */
    margin-bottom: 8px;
    font-weight: 500;
    display: block; /* Ensure label is on its own line */
}
.form-group input,
.form-group textarea {
    padding: 14px;
    border: 1px solid #c9d1d9;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 1em;
    color: #333f42;
    background-color: #f8f8f8;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%; /* Ensure inputs take full width of their parent .form-group */
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: #108bcb; /* Blue border on focus */
    box-shadow: 0 0 0 4px rgba(16, 139, 203, 0.25); /* More prominent focus shadow */
    outline: none;
}
.form-group textarea {
    resize: vertical;
    min-height: 150px;
}
.submit-group {
    text-align: center;
    margin-top: 10px;
    width: 100%; /* Make submit group span full width to center its button */
    max-width: 900px; /* Match inputs/textareas max-width */
    margin-left: auto;
    margin-right: auto;
}
.contact-form .cta-button {
    background-color: #f6630a; /* Blue submit button */
    padding: 14px 32px;
}
.contact-form .cta-button:hover {
    background-color: #0d79a6; /* Darker blue on hover */
}
/* Honeypot field for bot protection */
.honeypot {
    display: none; /* Hide from human users */
    visibility: hidden; /* Ensure it's not visible */
    height: 0;
    width: 0;
    position: absolute;
    left: -9999px; /* Move off-screen */
}
/* Form submission messages */
.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px; /* Space below message */
    font-weight: bold;
    text-align: center;
    width: 100%; /* Make messages stretch */
    max-width: 900px; /* Match inputs/textareas max-width */
    margin-left: auto;
    margin-right: auto;
}
.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Video Embed */
.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio (height / width = 9 / 16 = 0.5625) */
    height: 0;
    overflow: hidden;
    max-width: 100%; /* Ensures it doesn't overflow its parent content-section */
    background: #000; /* Fallback background */
    margin-bottom: 20px; /* Space below the video */
    border-radius: 8px; /* Match content section rounded corners */
    box-shadow: 0 4px 10px rgba(0,0,0,0.2); /* Add shadow for the video container */
}

.video-responsive iframe,
.video-responsive object,
.video-responsive embed {
    position: absolute !important; /* Force absolute positioning */
    top: 0 !important;
    left: 0 !important;
    width: 100% !important; /* Force width to 100% */
    height: 100% !important; /* Force height to 100% */
    /* !important added to overcome potential inline or conflicting styles */
}


/* Footer Styles */
.footer-container {
    background-color: #3a3737; /* Darker charcoal */
    padding: 40px 20px;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
    color: #e6e4e0; /* Light text for footer */
}
.footer-column {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 10px;
}
.footer-column h3 {
    font-family: 'Poppins', sans-serif;
    color: #f6630a; /* Blue for footer headings */
    margin-top: 0;
    margin-bottom: 15px;
}
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-column ul li {
    margin-bottom: 8px;
    text-align: left;
}
.footer-column ul li a {
    font-family: 'Lato', sans-serif;
    text-decoration: none;
    color: #e6e4e0; /* Light color for footer links */
    font-size: 0.95em;
    transition: color 0.3s ease;
}
.footer-column ul li a:hover {
    color: #108bcb; /* Blue on hover */
}
.footer-logo-graphic img {
    max-width: 125px;
    height: 125px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}
.copyright-bar {
    background-color: #333f42; /* Charcoal background */
    color: white;
    text-align: center;
    padding: 15px 20px;
    font-size: 0.9em;
    font-family: 'Lato', sans-serif;
}

/* Music Page Specific Styles */
.music-social-icons {
    display: flex;
    justify-content: center; /* Center icons horizontally */
    align-items: center;
    flex-wrap: wrap; /* Allow icons to wrap on smaller screens */
    gap: 25px; /* Space between icons */
    margin-top: 20px;
    margin-bottom: 20px;
}
.music-social-icons img {
    width: 50px; /* Size of social icons */
    height: 50px;
    border-radius: 50%; /* Make them round */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Subtle shadow */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.music-social-icons img:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.music-streaming-links,
.music-support-links {
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px; /* Space between buttons */
    margin-top: 20px;
    margin-bottom: 30px;
    align-items: center; /* Center buttons horizontally */
}
.music-streaming-links .cta-button,
.music-support-links .cta-button {
    min-width: 250px; /* Give buttons a consistent minimum width */
    text-align: center;
}

/* Responsive Adjustments */
@media (min-width: 769px) {
    .header-bar {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 15px 40px;
    }
    .header-logo-area {
        width: 100%;
        text-align: center;
        padding-bottom: 10px;
    }
    .header-logo-area img {
        max-width: 578px; /* Set to the explicit size of your logo or larger if desired */
        width: 100%; /* Ensure it scales down if browser is smaller than 578px */
        height: auto;
        margin: 0 auto;
    }
    .header-main-nav {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .header-main-nav ul {
        justify-content: center;
    }
    .hero-section {
        flex-direction: row;
        width: auto;
        position: static;
        transform: none;
    }
    .hero-text-area img {
        max-width: 400px; /* Full size for desktop profile pic */
    }
    .content-section {
        flex-direction: column; /* Default to column for single-column sections on desktop */
        max-width: 1200px; /* Ensures it's contained within this width */
    }
    .content-section.final-text-block {
        flex-direction: row; /* Ensure two-column sections are row on desktop */
        flex-wrap: nowrap; /* Prevent wrapping on desktop if not desired for these sections */
    }
    .content-section.final-text-block.image-right {
        flex-direction: row-reverse; /* Image on right for specific sections */
    }
    .final-text-block h2,
    .final-text-block p {
        text-align: left;
    }

    /* Podcast grid for desktop */
    .podcast-grid-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
        width: 100%;
        max-width: 1100px; /* Slightly smaller than main content section to give padding room */
        margin: 0 auto;
        padding: 20px 0;
    }
    .podcast-card {
        background: #ffffff;
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.06);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .podcast-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    .podcast-card-image {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #f3f4f6; /* Light gray background for images */
        overflow: hidden;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        padding: 20px;
    }
    .podcast-card-image img {
        max-width: 90%;
        height: auto;
        border-radius: 10px;
    }
    .podcast-card-body {
        padding: 18px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        text-align: left;
    }
    .podcast-card h3 { /* Changed from h2 to h3 for podcast card titles */
        font-size: 1.2rem;
        margin: 0 0 10px;
        color: #108bcb; /* Blue for podcast titles */
    }
    .podcast-card p {
        font-size: 0.95rem;
        color: #333f42; /* Charcoal for text */
        margin-bottom: auto;
        line-height: 1.5;
    }
    .podcast-card time {
        font-size: 0.85rem;
        color: #6b7280; /* Gray for date */
        margin-bottom: 10px;
        display: block; /* Ensure date is on its own line */
    }
    .podcast-card .cta-button { /* Reusing cta-button style for podcast links */
        margin-top: 15px;
        padding: 10px 15px;
        font-size: 0.9em;
        text-align: center;
        border-radius: 6px; /* Slightly less rounded than main cta */
    }
    .pagination-controls {
        margin-top: 40px;
        text-align: center;
    }
    .pagination-controls a {
        padding: 8px 14px;
        margin: 0 5px;
        text-decoration: none;
        background-color: #e5e7eb; /* Light gray for inactive pages */
        color: #333f42; /* Charcoal for inactive page numbers */
        border-radius: 4px;
        font-weight: 600;
        transition: background-color 0.3s ease, color 0.3s ease;
    }
    .pagination-controls a.active,
    .pagination-controls a:hover {
        background-color: #108bcb; /* Blue for active/hover */
        color: white;
    }

    /* CV Page Specific Styles for Desktop (modernized layout) */
    .cv-header-info {
        text-align: center;
        margin-bottom: 40px;
        border-bottom: 1px solid #ddd;
        padding-bottom: 20px;
        /* Remove max-width and margin auto if this is just part of a larger section */
    }
    .cv-header-info h1 {
        font-size: 3em;
        color: #333f42;
        margin-bottom: 5px;
    }
    .cv-header-info .tagline {
        font-size: 1.5em;
        color: #108bcb;
        margin-bottom: 20px;
        display: block;
    }
    .cv-contact-info {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
        margin-top: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #eee;
    }
    .cv-contact-info div {
        text-align: center; /* Center each contact item */
    }
    .cv-contact-info strong {
        display: block; /* Makes the label appear above the value */
        color: #108bcb;
        font-size: 0.9em;
        margin-bottom: 5px;
    }
    .cv-contact-info a,
    .cv-contact-info p {
        color: #333f42;
        text-decoration: none;
        font-size: 1em;
    }
    .cv-contact-info a:hover {
        text-decoration: underline;
    }

    /* CV Sections styling (Employment, Education, Skills etc.) */
    .cv-section {
        background-color: white;
        color: #333f42;
        width: 100%;
        max-width: 1200px;
        margin: 20px auto 40px auto;
        padding: 40px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        text-align: left; /* Ensure all content aligns left within the section */
    }
    .cv-section h2 {
        color: #108bcb;
        font-size: 2.2em;
        margin-bottom: 25px;
        padding-bottom: 10px;
        border-bottom: 2px solid #108bcb;
    }
    .cv-section h3 {
        color: #333f42;
        font-size: 1.4em;
        margin-top: 30px; /* Space above each job/instructional entry title */
        margin-bottom: 5px;
    }
    .cv-section p {
        margin-bottom: 15px;
        line-height: 1.6;
    }
    .cv-section ul {
        list-style-type: disc;
        padding-left: 25px; /* Standard bullet indentation */
        margin-bottom: 20px;
        margin-left: 0; /* Ensures the list starts at the left edge of the parent's content area */
    }
.cv-section ol { /* Added for ordered lists in CV */
    list-style-type: decimal;
    padding-left: 25px;
    margin-bottom: 20px;
    margin-left: 0;
}
    .cv-section li {
        margin-bottom: 10px;
        line-height: 1.7;
    }
    .cv-section .job-meta {
        font-style: italic;
        color: #666;
        margin-bottom: 15px;
        display: block;
    }
    /* Specific styling for the 'skills' section, as it's a list with strong tags */
    .cv-section.skills-section ul {
        columns: 2; /* Two columns for skills on larger screens */
        -webkit-columns: 2;
        -moz-columns: 2;
        column-gap: 40px;
    }
    .cv-section.skills-section li {
        break-inside: avoid-column; /* Prevent list items from breaking across columns */
        -webkit-column-break-inside: avoid;
        page-break-inside: avoid;
    }

}

@media (max-width: 768px) {
    /* CV Specific Styles for Mobile */
    .cv-header-info h1 {
        font-size: 2em;
    }
    .cv-header-info .tagline {
        font-size: 1em;
    }
    .cv-contact-info {
        flex-direction: column;
        gap: 10px;
    }
    .cv-contact-info div {
        text-align: left;
    }
    .cv-contact-info strong {
        display: inline; /* Keep strong on same line as value */
        margin-right: 5px;
    }
    .cv-contact-info p {
        display: inline;
    }
    .cv-section {
        padding: 25px 20px;
    }
    .cv-section h2 {
        font-size: 1.8em;
        text-align: center; /* Center section headings on mobile */
        border-bottom: none; /* Remove line on mobile if preferred */
        padding-bottom: 0;
        margin-bottom: 15px;
    }
    .cv-section h3 {
        font-size: 1.2em;
        margin-top: 20px;
        text-align: center; /* Center sub-headings on mobile */
    }
    .cv-section .job-meta {
        text-align: center; /* Center job meta on mobile */
    }
    .cv-section ul, .cv-section ol {
        padding-left: 20px;
        text-align: left; /* Keep lists left-aligned even if heading is centered */
        margin-left: 0;
    }
    .cv-section p {
        text-align: left;
    }
    .cv-section.skills-section ul {
        columns: 1; /* Single column for skills on mobile */
        -webkit-columns: 1;
        -moz-columns: 1;
    }

    /* Music page specific mobile */
    .music-streaming-links,
    .music-support-links {
        flex-direction: column;
    }
    .music-streaming-links .cta-button,
    .music-support-links .cta-button {
        width: 100%; /* Full width buttons on mobile */
        min-width: unset;
    }
    .music-social-icons {
        gap: 15px; /* Smaller gap on mobile */
    }
    .music-social-icons img {
        width: 40px; /* Smaller icons on mobile */
        height: 40px;
    }
}

@media (max-width: 480px) {
    .header-bar {
        padding: 10px;
    }
    .header-logo-area img {
        max-width: 120px;
    }
    .hamburger-menu {
        right: 10px;
        top: 15px;
    }
    .header-main-nav ul li a {
        padding: 6px 8px;
        font-size: 0.9em;
    }
    .cta-button {
        padding: 12px 20px;
        font-size: 0.9em;
    }
    .hero-text-area h2 {
        font-size: 1.8em;
    }
    .hero-text-area p {
        font-size: 0.95em;
    }
    .content-section h2 {
        font-size: 1.8em;
    }
    .content-section p {
        font-size: 0.95em;
    }
    .contact-form-section h2 {
        font-size: 2em;
    }
    .contact-form .cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    /* CV Specific mobile small screen adjustments */
    .cv-header-info h1 {
        font-size: 1.8em;
    }
    .cv-header-info .tagline {
        font-size: 0.9em;
    }
}