
/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    padding: 20px;
}

.resume-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Header Styles */
.resume-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #4a6fa5;
    padding-bottom: 20px;
}

.resume-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.resume-header .subtitle {
    font-size: 1.2rem;
    color: #4a6fa5;
    font-weight: 500;
}

/* Section Styles */
.resume-section {
    margin-bottom: 30px;
}

.resume-section h2 {
    color: #2c3e50;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Item Styles */
.resume-item {
    margin-bottom: 20px;
}

.resume-item h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    display: flex;
    justify-content: space-between;
}

.resume-item .date {
    font-weight: normal;
    color: #666;
}

.resume-item p {
    margin: 5px 0;
    color: #555;
}

.resume-item ul {
    margin-left: 20px;
    color: #555;
}

.resume-item li {
    margin-bottom: 5px;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.skills-grid h3 {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.skills-grid ul {
    list-style: none;
    padding-left: 0;
}

.skills-grid li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.skills-grid li:before {
    content: "•";
    color: #4a6fa5;
    position: absolute;
    left: 0;
}



