/* Reset basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f4f5f7;
    color: #333333;
    line-height: 1.6;
    padding: 40px 20px;
}

/* Main Container Layout */
.resume-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    display: flex;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* Left Sidebar styling */
.sidebar {
    width: 32%;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 40px 25px;
}

.profile-section h1 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: #ecf0f1;
}

.subtitle {
    font-size: 1rem;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-section, .skills-section {
    margin-bottom: 35px;
}

.sidebar h3 {
    font-size: 1.1rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 5px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-section p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #bdc3c7;
}

.skills-section ul {
    list-style: none;
}

.skills-section li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #e0e0e0;
    position: relative;
    padding-left: 15px;
}

.skills-section li::before {
    content: "•";
    color: #3498db;
    position: absolute;
    left: 0;
}

/* Right Main Content styling */
.main-content {
    width: 68%;
    padding: 40px;
}

section {
    margin-bottom: 35px;
}

h2 {
    font-size: 1.4rem;
    color: #2c3e50;
    border-bottom: 2px solid #eaeded;
    padding-bottom: 5px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.summary p {
    font-size: 0.95rem;
    color: #555555;
}

/* Job & Education Entries */
.job, .degree {
    margin-bottom: 20px;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-header h3 {
    font-size: 1.1rem;
    color: #333333;
}

.date {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-weight: 600;
}

.company {
    font-size: 0.95rem;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 8px;
}

.main-content ul {
    margin-left: 20px;
    font-size: 0.9rem;
    color: #555555;
}

.main-content li {
    margin-bottom: 5px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .resume-container {
        flex-direction: column;
    }
    .sidebar, .main-content {
        width: 100%;
    }
}
