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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 40px;
    background-color: #ffffff;
}

/* Header Styles */
.header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 3px solid #000000;
    margin-bottom: 40px;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-item .icon {
    font-size: 1rem;
}

.contact-item a {
    color: #000000;
    text-decoration: none;
    border-bottom: 1px solid #000000;
}

.contact-item a:hover {
    background-color: #000000;
    color: #ffffff;
    padding: 2px 5px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    font-size: 0.9rem;
}

.social-links a {
    color: #000000;
    text-decoration: none;
    padding: 5px 12px;
    border: 1px solid #000000;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #000000;
    color: #ffffff;
}

/* Section Styles */
.section {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #cccccc;
}

.section:last-of-type {
    border-bottom: none;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #000000;
    color: #ffffff;
    padding: 8px 15px;
    display: inline-block;
}

/* Education Section */
.education-item {
    margin-bottom: 25px;
    padding: 15px;
    border-left: 3px solid #000000;
    padding-left: 20px;
}

.edu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    gap: 20px;
}

.edu-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.edu-header .detail {
    font-size: 0.95rem;
    color: #333333;
}

.date {
    font-size: 0.9rem;
    font-style: italic;
    white-space: nowrap;
    color: #666666;
    background-color: #f5f5f5;
    padding: 4px 10px;
    border: 1px solid #000000;
}

.edu-details {
    margin-top: 15px;
}

.detail-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.detail-row .label {
    font-weight: 600;
    min-width: 140px;
}

.detail-row p {
    margin-bottom: 5px;
    line-height: 1.5;
}

/* Skills Section */
.skills-row {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.skill-label {
    font-weight: 600;
    min-width: 120px;
}

.skill-value {
    color: #333333;
}

/* Projects Section */
.project-category {
    margin-bottom: 20px;
}

.project-row {
    display: flex;
    gap: 15px;
    font-size: 0.95rem;
    align-items: flex-start;
}

.project-label {
    font-weight: 600;
    min-width: 180px;
    flex-shrink: 0;
}

.project-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.project-link {
    color: #000000;
    text-decoration: underline;
    transition: all 0.2s ease;
}
.project-link:hover {
    background-color: #000000;
    color: #ffffff;
    padding: 2px 6px;
    text-decoration: none;
    cursor: pointer;
}

.project-description {
    line-height: 1.6;
}

.project-description p {
    color: #333333;
}

/* Achievements Section */
.achievement-item {
    margin-bottom: 20px;
}

.achievement-row {
    display: flex;
    gap: 15px;
    font-size: 0.95rem;
    align-items: flex-start;
}

.achievement-label {
    font-weight: 600;
    min-width: 150px;
    flex-shrink: 0;
}

.achievement-content p {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #333333;
}

/* Languages Section */
.language-row {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.language-label {
    font-weight: 600;
    min-width: 100px;
}

.language-level {
    color: #333333;
}

/* Footer */
.footer {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 3px solid #000000;
    text-align: center;
    font-size: 0.9rem;
    color: #666666;
}

.personal-info {
    font-size: 18px;
    font-family: monospace;
    line-height: 1.6;
    color: #333333;
    margin-top: 10px;
    border: black 3px solid;
    border-radius: 10px;
    border-right-width: 1px;
    border-top-width: 1px;

    padding: 15px;
}
highlight{
    background-color: yellow;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 30px 20px;
    }

    .header h1 {
        font-size: 1.8rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .edu-header {
        flex-direction: column;
    }

    .detail-row {
        flex-direction: column;
        gap: 5px;
    }

    .detail-row .label {
        min-width: auto;
    }

    .skills-row,
    .project-row,
    .achievement-row,
    .language-row {
        flex-direction: column;
        gap: 8px;
    }

    .skill-label,
    .project-label,
    .achievement-label,
    .language-label {
        min-width: auto;
    }
}

@media print {
    body {
        background-color: #ffffff;
    }

    .container {
        max-width: 100%;
        padding: 20px;
    }

    .section {
        page-break-inside: avoid;
    }

    .education-item,
    .achievement-item {
        page-break-inside: avoid;
    }

    a {
        color: #000000;
        text-decoration: underline;
    }
}
