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

body {
    font-family: 'Sansation', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    background-color: #f5f5f5;
    line-height: 1.6;
}

.resume-container {
    max-width: 900px;
    margin: 40px auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Header Clean */
.header-clean {
    padding: 40px 50px 20px;
    text-align: center;
    border-bottom: 2px solid #2b6cb0;
    border-left: 8px solid #2b6cb0;
}

.header-clean h1 {
    font-size: 2.4em;
    font-weight: 700;
    color: #2F3542;
    margin-bottom: 2px;
    letter-spacing: 1px;
}

.header-clean h2 {
    font-size: 1.3em;
    font-weight: 400;
    color: #2b6cb0;
    margin-bottom: 5px;
}

.branding-text {
    font-size: 1em;
    font-weight: 600;
    color: #444;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.contact-info-clean {
    margin-bottom: 15px;
    font-size: 0.95em;
    color: #555;
}

.contact-row {
    margin-bottom: 6px;
    border-top: 1px solid #ccc;
    padding-top: 4px;
}

.contact-item {
    display: inline-block;
}

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

.contact-item i {
    margin-right: 4px;
    font-size: 1.1em;
}

.contact-sep {
    margin: 0 10px;
    color: #ccc;
}

.summary-clean {
    font-size: 0.95em;
    line-height: 1.5;
    color: #444;
    margin: 0 auto;
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    padding: 20px 20px 20px;
    border-left: 8px solid #2b6cb0;
}

/* Sections */
.section {
    padding-top: 30px;
    margin-bottom: 30px;
}

.section-title {
    font-size: 1.4em;
    font-weight: 700;
    color: #2b6cb0;
    border-bottom: 1px solid #ddd;
    padding-bottom: 7px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Experience block */
.experience-item {
    margin-bottom: 30px;
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.job-title {
    font-size: 1.2em;
    font-weight: 700;
    color: #000;
}

.job-company {
    font-size: 1.05em;
    color: #333;
    margin-bottom: 5px;
}

.job-meta {
    font-size: 0.85em;
    color: #666;
    font-style: italic;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.job-desc {
    font-size: 0.9em;
    padding-left: 20px;
}

.job-desc li {
    margin-bottom: 5px;
}

/* Skills */
.skills-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.skill-category {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 15px;
    border-left: 1px solid #b0c4de;
}

.skill-category-name {
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 3px;
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.skill-category-items {
    font-size: 0.9em;
    line-height: 1.5;
    color: #444;
}

/* Earlier Experience */
.earlier-exp-title {
    font-size: 1.1em;
    color: #2F3542;
    margin-top: 30px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 5px;
}

.earlier-exp-list {
    list-style-type: none;
    font-size: 0.9em;
    color: #444;
}

.earlier-exp-list li {
    margin-bottom: 6px;
    position: relative;
    padding-left: 15px;
}

.earlier-exp-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #888;
}

/* Education */
.education-item {
    margin-bottom: 20px;
}

.edu-degree {
    font-weight: 700;
    color: #000;
    font-size: 1em;
}

.edu-university {
    font-size: 0.95em;
}

.edu-date {
    font-size: 0.85em;
    color: #666;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    .header-text {
        padding-right: 0;
        margin-bottom: 20px;
    }
    .contact-item {
        width: 100%;
    }
    .skills-container {
        grid-template-columns: 1fr;
    }
    .skill-category {
        border-left: none;
        padding-left: 0;
    }
}

@media print {
    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
    body {
        background-color: #fff;
    }
    .resume-container {
        box-shadow: none;
        margin: 0;
        max-width: 100%;
        width: 100%;
    }
    .main-content {
        flex-direction: column !important;
        display: flex !important;
        padding: 20px !important;
    }
    .header-clean {
        border-bottom: 2px solid #2b6cb0 !important;
        padding-top: 0 !important;
    }
    .contact-item {
        display: inline-block !important;
        margin: 0 5px;
        width: auto !important;
    }
}
