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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f5f5f5;
    padding: 40px 20px;
    line-height: 1.6;
}

.resume-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 50px 60px;
}

/* Header Styles */
.header {
    margin-bottom: 30px;
}

.name {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    font-weight: 400;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 12px;
    color: #333;
}

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

/* Content Layout */
.content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

/* Section Styles */
.section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 3px solid #1a1a1a;
    text-transform: uppercase;
}

/* Summary */
.summary-text {
    font-size: 13px;
    color: #333;
    text-align: justify;
    line-height: 1.7;
}

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

.job-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.company-name {
    font-size: 13px;
    color: #333;
    margin-bottom: 5px;
}

.job-meta {
    display: flex;
    gap: 15px;
    font-size: 11px;
    color: #666;
    margin-bottom: 8px;
}

.date, .location {
    display: flex;
    align-items: center;
    gap: 4px;
}

.job-description {
    font-size: 12px;
    color: #333;
    margin-bottom: 8px;
}

.job-responsibilities {
    list-style-position: outside;
    padding-left: 20px;
    font-size: 12px;
    color: #333;
    line-height: 1.7;
}

.job-responsibilities li {
    margin-bottom: 6px;
}

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

.degree-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.institution {
    font-size: 12px;
    color: #333;
    margin-bottom: 3px;
}

.education-date {
    font-size: 11px;
    color: #666;
}

/* Certifications */
.certification-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.certification-item {
    margin-bottom: 15px;
}

.cert-title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.cert-description {
    font-size: 11px;
    color: #333;
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.social-icon {
    font-size: 20px;
}

.social-platform {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.social-link {
    font-size: 11px;
    color: #666;
}

/* Skills */
.skills-group {
    margin-bottom: 15px;
}

.skills-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.skill-item {
    background-color: #f8f8f8;
    padding: 10px 15px;
    margin-bottom: 8px;
    font-size: 12px;
    color: #333;
    border-left: 3px solid #1a1a1a;
}

.skill-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 8px;
}

.skill-row .skill-item {
    margin-bottom: 0;
}

/* Languages */
.language-item {
    margin-bottom: 20px;
}

.language-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.language-name {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
}

.proficiency-dots {
    display: flex;
    gap: 5px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #e0e0e0;
}

.dot.filled {
    background-color: #666;
}

.language-level {
    font-size: 11px;
    color: #666;
}

/* Projects */
.project-item {
    margin-bottom: 25px;
}

.project-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.project-meta {
    display: flex;
    gap: 15px;
    font-size: 11px;
    color: #666;
    margin-bottom: 8px;
}

.project-summary {
    font-size: 12px;
    color: #333;
    margin-bottom: 8px;
}

.project-details {
    list-style-position: outside;
    padding-left: 20px;
    font-size: 12px;
    color: #333;
    line-height: 1.7;
}

.project-details li {
    margin-bottom: 6px;
}

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

    .content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .name {
        font-size: 32px;
    }

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

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

    .skill-row {
        grid-template-columns: 1fr;
    }
}

@media print {
    body {
        background-color: white;
        padding: 0;
    }

    .resume-container {
        box-shadow: none;
        padding: 20px;
        max-width: 100%;
    }
}
