/* General Reset and Body Styling */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f9;
    padding: 20px;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Container: Increased width to 950px */
.container {
    max-width: 950px; 
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 5px;
}

/* Header Styling */
header {
    text-align: center;
    border-bottom: 2px solid #007bff;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

header h1 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-info p {
    margin: 5px 0;
    font-size: 0.95em;
}

/* Section Styling */
.section {
    margin-bottom: 30px;
}

h2 {
    color: #2c3e50;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 1.2em;
    letter-spacing: 1px;
}

/* Job & School Layouts */
.job, .project, .school {
    margin-bottom: 20px;
}

/* Reuse this class for both Work and Education dates */
.job-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

h3 {
    font-size: 1.1em;
    color: #333;
    font-weight: bold;
}

.company {
    font-style: italic;
    color: #666;
    margin-bottom: 8px;
}

ul {
    list-style-position: inside;
    margin-left: 10px;
}

li {
    margin-bottom: 5px;
}

/* Project Links Styling */
.project-link {
    margin-top: 5px;
    margin-left: 10px; /* Aligns with bullet points */
    font-weight: 500;
}

/* Skills & Certifications Section */
.skills-category {
    margin-bottom: 10px;
}

/* Footer & Counter Styling */
footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.9em;
    color: #777;
}

#visitor-counter {
    font-weight: bold;
    color: #007bff;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .container {
        padding: 20px;
    }
    
    .job-header {
        flex-direction: column;
    }
    
    header h1 {
        font-size: 2em;
    }
}