* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Georgia', serif;
}

body {
    background-color: #fdfcf0; 
    padding: 40px 20px;
}

.resume-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    border-top: 10px solid #fbc02d; 
}

.header-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    background: #fffef2;
    border-bottom: 1px solid #eee;
    gap: 20px;
}

.photo-container {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 6px solid #fbc02d; 
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #eee;
}

.photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.header-text {
    text-align: center;
}



@media (max-width: 768px) {
    .photo-container {
        width: 120px;
        height: 120px;
    }
}
.name-display {
    font-size: 2.5rem;
    color: #f57f17; 
    font-weight: bold;
    letter-spacing: 2px;
}

.objective {
    margin-top: 15px;
    font-style: italic;
    color: #555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.flex-body {
    display: flex;
    flex-wrap: wrap;
}

.sidebar {
    flex: 1;
    min-width: 250px;
    background: #fffdf5;
    padding: 30px;
    border-right: 1px solid #f9f4d7;
}

.main-content {
    flex: 2;
    min-width: 400px;
    padding: 30px;
}

.side-title {
    font-weight: bold;
    color: #fbc02d;
    border-bottom: 2px solid #ffecb3;
    margin-bottom: 15px;
    padding-bottom: 5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.side-block { margin-bottom: 30px; }

.side-item, .edu-item {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #444;
}

.skill-tag {
    background: #fff9c4;
    padding: 5px 10px;
    margin-bottom: 5px;
    display: inline-block;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #f57f17;
}

.section-header {
    font-size: 1.2rem;
    font-weight: bold;
    color: #f57f17;
    margin-bottom: 20px;
    border-left: 5px solid #fbc02d;
    padding-left: 10px;
}

.exp-item { margin-bottom: 25px; }

.exp-title {
    font-weight: bold;
    font-size: 1.1rem;
    color: #333;
}

.exp-date {
    font-size: 0.9rem;
    color: #fbc02d;
    margin-bottom: 8px;
    font-weight: bold;
}

.exp-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
}


@media (max-width: 768px) {
    .flex-body { flex-direction: column; }
    .sidebar { border-right: none; border-bottom: 1px solid #eee; }
}