@media (max-width: 700px) {
    /* ...existing responsive styles... */
    /* Shrink 2025 robot images for mobile */
    .project img[src*="2025Robot1.png"],
    .project img[src*="2025Robot2.png"] {
        height: 140px !important;
        max-width: 48% !important;
        width: auto !important;
        object-fit: contain !important;
        margin: 0 2px !important;
    }
    .project > div[style*="display: flex"] {
        max-width: 100% !important;
    }
}
/* Responsive layout improvements for mobile */
@media (max-width: 700px) {
    body {
        margin: 0;
        padding: 0;
        font-size: 1em;
    }
    .header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        margin-top: 12px;
    }
    main, section, .project, .exp-list, .skills-list, .achievements-list {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .project img, .project iframe {
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        height: auto;
    }
    .exp-list, .skills-list, .achievements-list {
        padding-left: 0 !important;
    }
    .project > div[style*="display: flex"] {
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
        max-width: 100% !important;
    }
}
.onshape-fallback {
    margin-top: 0.7rem;
    font-size: 1rem;
    color: #444;
}
.onshape-fallback a {
    color: #1976d2;
    text-decoration: underline;
}
.onshape-embed {
    margin-top: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(25,118,210,0.08);
}
.project h3 {
    margin-top: 0;
    color: #1565c0;
}
body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #222;
}
header.no-bar {
    background: none;
    color: #222;
    padding: 2rem 0 0.5rem 0;
    text-align: left;
    box-shadow: none;
}
.header-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.headshot {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0.5rem;
}
nav {
    margin-top: 0.5rem;
}
nav a {
    color: #1976d2;
    margin: 0 0.7rem;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
}
nav a:hover {
    color: #1565c0;
    text-decoration: underline;
}
main {
    max-width: 900px;
    margin: 2rem auto 2rem auto;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
section {
    margin-bottom: 2.5rem;
}
h1 {
    margin-bottom: 0.3rem;
}
h2 {
    color: #1976d2;
    margin-bottom: 0.7rem;
}
.exp-list {
    list-style: none;
    padding: 0;
}
.exp-list > li {
    margin-bottom: 1.5rem;
    background: #f7faff;
    border-radius: 8px;
    padding: 1rem 1.2rem;
    box-shadow: 0 1px 4px rgba(25,118,210,0.04);
}
.exp-list strong {
    color: #1565c0;
    font-size: 1.08rem;
}
.exp-list ul {
    margin: 0.5rem 0 0 1.2rem;
}
.skills-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem 2rem;
}
.skills-list li {
    background: #f4f4f4;
    border-radius: 6px;
    padding: 0.7rem 1rem;
    font-size: 1rem;
}
@media (max-width: 700px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    main {
        padding: 1rem;
    }
    .skills-list {
        grid-template-columns: 1fr;
    }
}
