body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: #f9f9f9;
    color: #333;
}

main {
    max-width: 800px;
    margin: 0 auto;
}

header {
    padding: 20px;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0; 
    text-align: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

h2 {
    font-size: 24px;
    margin-bottom: 10px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
}

a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.contact-links a {
    margin: 0 10px;
    transition: color 0.3s;
}

.contact-links a:hover {
    color: #0056b3;
}

.company-logo, .project-logo {
    height: 50px;
    padding: 10px;
    vertical-align: middle;
}

.experience-item, .experience-dates {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.experience-dates {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.hidden {
    display: none !important;
}

.back-link {
    display: block;
    background: transparent;
    color: #0072c6;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    width: max-content;
    margin: 0 auto;
}

.back-link:hover {
    background-color: rgba(0, 114, 198, 0.1);
}

.resume-content {
    text-align: center;
    margin: 20px 0;
}

.resume-content img {
    width: 100%;
    max-width: 1000px;
    height: auto;
}

.experience-item img {
    width: 50px;
    height: 50px;
}

ul li p {
    margin: 5px 0;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto 48px auto;
    background: #fff;
    border: 2px solid #0072c6;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 114, 198, 0.15);
    padding: 24px 32px;
    margin-bottom: 48px;
    transition: box-shadow 0.3s ease;
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.blog-title a {
    color: #0072c6;
    text-decoration: none;
}

.blog-title a:hover {
    text-decoration: underline;
}

iframe {
    width: 100%;
    height: 100vh;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.iframe-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 8px;
}