/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2em;
    color: #1a73e8;
}

header p {
    margin: 5px 0;
}

a {
    color: #1a73e8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Section Styles */
section {
    margin-bottom: 10px;
}

section h2 {
    font-size: 1.4em;
    color: #333;
    border-bottom: 2px solid #1a73e8;
    padding-bottom: 5px;
}

ul {
    padding-left: 20px;
    list-style-type: square;
}

ul li {
    margin-bottom: 10px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.skills-grid div {
    background-color: #e8f0fe;
    padding: 10px;
    border-radius: 5px;
}

/* Job Experience Styles */
.job h3 {
    font-size: 1.2em;
    color: #1a73e8;
}

.job p {
    margin: 4px 0;
}

/* Project Section Styles */
.projects p {
    margin-bottom: 15px;
}

.projects a {
    color: #ff4500;
}

.projects a:hover {
    text-decoration: underline;
}

/* Footer Styles */
footer {
    text-align: center;
    font-size: 0.9em;
    color: #777;
    padding-top: 10px;
    border-top: 1px solid #ccc;
}

/* Responsive Design */
@media (max-width: 600px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }
}
