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

body {
    font-family: 'Times New Roman', serif;
    line-height: 1.4;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #fff;
}

.visitor-counter-container {
    margin-bottom: 20px;
    font-size: 12px;
    color: #555;
}

.visitor-counter {
    font-weight: bold;
}

.header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #333;
    padding-bottom: 15px;
}

.header h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.contact-info {
    font-size: 11px;
    color: #666;
    line-height: 1.3;
}

.section {
    margin-bottom: 25px;
}

.section-title {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #333;
    padding-bottom: 2px;
    margin-bottom: 15px;
}

.education-item,
.experience-item,
.project-item {
    margin-bottom: 20px;
}

.education-header,
.experience-header,
.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5px;
}

.institution,
.job-title,
.project-title {
    font-weight: bold;
    font-size: 13px;
}

.degree,
.company,
.project-tech {
    font-style: italic;
    font-size: 12px;
    margin-top: 2px;
}

.location-date {
    text-align: right;
    font-size: 12px;
    line-height: 1.3;
}

.date {
    font-weight: bold;
}

.location {
    color: #666;
}

.description {
    margin-top: 8px;
}

.description ul {
    margin-left: 20px;
    margin-top: 5px;
}

.description li {
    font-size: 11px;
    margin-bottom: 4px;
    text-align: justify;
}

.project-description {
    font-size: 11px;
    margin-top: 5px;
    text-align: justify;
}

.project-links {
    font-size: 10px;
    color: #666;
    margin-top: 3px;
    font-style: italic;
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    font-size: 11px;
}

.skill-category {
    margin-bottom: 8px;
}

.skill-category strong {
    font-size: 12px;
}

@media (max-width: 600px) {
    .education-header,
    .experience-header,
    .project-header {
        flex-direction: column;
    }

    .location-date {
        text-align: left;
        margin-top: 5px;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }
}