* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f0f4f8;
    padding: 40px 20px;
    color: #1e293b;
    line-height: 1.5;
}

.resume {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.resume-grid {
    display: grid;
    grid-template-columns: 34% 66%;
}

/* LEFT COLUMN - Sidebar */
.sidebar {
    background: #2c5f8a;
    color: #f1f5f9;
    padding: 32px 24px;
}

.profile-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #e2e8f0;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #90cdf4;
    overflow: hidden;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-img .placeholder {
    font-size: 48px;
    color: #94a3b8;
}

.sidebar h2 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 28px 0 14px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #7ab3c8;
}

.sidebar h2:first-of-type {
    margin-top: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.8rem;
    word-break: break-word;
    color: #e2e8f0;
}

.contact-item a {
    color: #e2e8f0;
    text-decoration: none;
}

.contact-item a:hover {
    color: white;
    text-decoration: underline;
}

.contact-icon {
    width: 28px;
    font-size: 1rem;
}

.skill-item {
    margin-bottom: 16px;
}

.skill-name {
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 5px;
    color: #e2e8f0;
}

.skill-bar {
    height: 5px;
    background: #4a7c9e;
    border-radius: 10px;
    overflow: hidden;
}

.skill-level {
    height: 100%;
    background: #90cdf4;
    border-radius: 10px;
    width: 85%;
}

.cert-item {
    background: #3d6e8f;
    padding: 10px 12px;
    border-radius: 12px;
    margin-bottom: 10px;
    font-size: 0.75rem;
}

.cert-title {
    font-weight: 600;
    color: #e0f2fe;
    margin-bottom: 3px;
}

/* RIGHT COLUMN - Main Content */
.main-content {
    padding: 32px 32px 32px 28px;
    background: white;
}

.name {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.3px;
    margin-bottom: 6px;
}

.title {
    font-size: 0.9rem;
    color: #2c5f8a;
    font-weight: 500;
    margin-bottom: 16px;
    display: inline-block;
    background: #e6f0f9;
    padding: 4px 12px;
    border-radius: 20px;
}

.summary {
    color: #334155;
    margin-bottom: 28px;
    line-height: 1.6;
    font-size: 0.85rem;
}

.section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin: 24px 0 14px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title span {
    background: #2c5f8a;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: white;
}

.exp-item {
    margin-bottom: 20px;
}

.exp-header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.exp-role {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.9rem;
}

.exp-company {
    color: #2c5f8a;
    font-size: 0.8rem;
    font-weight: 500;
}

.exp-date {
    color: #64748b;
    font-size: 0.75rem;
}

.exp-desc {
    padding-left: 20px;
    margin-top: 8px;
}

.exp-desc li {
    margin-bottom: 5px;
    color: #475569;
    font-size: 0.8rem;
}

.project-card {
    background: #f8fafc;
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 14px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}

.project-card:hover {
    border-color: #90cdf4;
    background: #fefefe;
}

.project-title {
    font-weight: 700;
    margin-bottom: 5px;
    color: #0f172a;
    font-size: 0.9rem;
}

.project-tech {
    font-size: 0.7rem;
    color: #2c5f8a;
    margin-bottom: 6px;
}

.project-desc {
    font-size: 0.75rem;
    color: #475569;
}

.footer-note {
    text-align: center;
    font-size: 0.65rem;
    color: #94a3b8;
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
    .resume-grid {
        grid-template-columns: 1fr;
    }
    body {
        padding: 20px;
    }
}