* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f9;
    color: #333;
    padding: 20px;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Header Section */
header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2rem;
    color: #4facfe;
}

header .title {
    font-size: 1.2rem;
    color: #666;
    margin: 5px 0;
}

header .contact {
    font-size: 0.9rem;
    color: #333;
}

header .contact a {
    color: #4facfe;
    text-decoration: none;
}

header .contact a:hover {
    text-decoration: underline;
}

/* Section Titles */
section h2 {
    font-size: 1.5rem;
    color: #4facfe;
    margin-bottom: 10px;
    border-bottom: 2px solid #4facfe;
    padding-bottom: 5px;
}

section h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

/* Summary Section */
.summary {
    margin-bottom: 20px;
}

/* Experience Section */
.experience {
    margin-bottom: 20px;
}

.experience .job {
    margin-bottom: 15px;
}

.experience .job h4 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
}

.experience .job .date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

/* Skills Section */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: space-between;
    /* Space evenly between skills */
}

.skill-tag {
    background: #4facfe;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-align: center;
    flex: 1 1 calc(33.333% - 10px);
    /* Each skill takes 1/3 of the row */
    max-width: calc(33.333% - 10px);
    /* Prevent skills from growing too wide */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 600px) {
    .skill-tag {
        flex: 1 1 calc(50% - 10px);
        /* On smaller screens, show 2 skills per row */
        max-width: calc(50% - 10px);
    }
}

/* Education Section */
.education {
    margin-bottom: 20px;
}

.education .degree {
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
}

.education .school {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

/* Languages Section */
.languages {
    margin-bottom: 20px;
}

.languages ul {
    list-style-type: none;
}

.languages li {
    margin-bottom: 5px;
}

/* Objective Section */
.objective {
    margin-bottom: 20px;
}

.skills-container span {
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.3s ease;
}

.skills-container span:hover {
    transform: translateY(-10px);
}

.experience ul {
    padding-left: 20px;
}