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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: #454545;
    color: #FFF5F5;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #FFF5F5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #0066cc;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #E0926B 0%, #F0660D 100%);
    color: #FFF5F5;
    padding: 2.5rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
}

.hero-contact a {
    color: #FFF5F5 !important;
    text-decoration: none;
    border-bottom: 1px solid #FFF5F5;
    transition: all 0.3s ease;
}

.hero-contact a:hover {
    color: #333 !important;
    background-color: #FFF5F5;
    padding: 2px 4px;
}

/* Sections */
.section {
    background-color: white;
    padding: 4rem 3rem;
    margin: 2.5rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section h2 {
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 2rem;
    border-bottom: 3px solid #0066cc;
    padding-bottom: 0.75rem;
}

.section-title-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}

.section-title-row h2 {
    margin-bottom: 1.5rem;
}

.resume-links {
    display: flex;
    gap: 1rem;
    white-space: nowrap;
}

.download-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
}

.download-link:hover {
    text-decoration: underline;
}

.section p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    font-size: 1rem;
    color: #555;
    letter-spacing: 0.3px;
}

.resume-content h3 {
    font-size: 1.3rem;
    color: #0066cc;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 0.5rem;
}

.job-entry {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-left: 4px solid #0066cc;
    padding-left: 1.5rem;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.job-header h4 {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
}

.job-date {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
}

.job-company {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.job-duties {
    list-style-position: inside;
    margin-left: 1rem;
}

.job-duties li {
    margin-bottom: 0.6rem;
    line-height: 1.7;
    color: #555;
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.skill-tag {
    background-color: #0066cc;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
}

.skills-section {
    margin-bottom: 1.5rem;
}

.skills-level {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-left: 4px solid #0066cc;
    padding-left: 0.8rem;
}

.additional-job {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.additional-job:last-child {
    border-bottom: none;
}

.additional-job-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.additional-job-header h4 {
    font-size: 1rem;
    color: #333;
    margin: 0;
}

.additional-job-company {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.additional-job-details {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

}
