/* General Body Styles */
body {
    font-family: 'Roboto', 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    background-color: #f8f9fa; /* Light gray background */
    color: #3c4043; /* Dark gray text */
    display: flex;
    justify-content: center;
}

.container {
    max-width: 960px;
    width: 100%;
    padding: 20px;
}

/* Header Styles */
header {
    background-color: #1a73e8; /* Google's primary blue */
    color: #ffffff; /* White text */
    padding: 2rem 1rem;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 30px;
}

header h1 {
    font-size: 2.5em;
    font-weight: 500;
    margin: 0;
}

header h2 {
    font-size: 1.2em;
    font-weight: 400;
    margin: 10px 0 0;
}

/* Section/Card Styles */
section {
    background: #ffffff; /* White card background */
    padding: 25px 30px;
    margin-bottom: 25px;
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); /* Subtle shadow */
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

section:hover {
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

h3 {
    font-size: 1.5em;
    color: #1a73e8; /* Blue section headers */
    border-bottom: 2px solid #e8eaed; /* Light gray border */
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 20px;
}

h4 {
    font-size: 1.2em;
    color: #202124; /* Darker heading for job titles */
    margin-bottom: 5px;
}

/* List and Link Styles */
ul {
    list-style: none;
    padding: 0;
}

li {
    margin-bottom: 12px;
}

a {
    color: #1a73e8; /* Blue links */
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

/* Specific Section Adjustments */
#experience p {
    font-style: italic;
    color: #5f6368;
    margin-top: 0;
    margin-bottom: 15px;
}

#experience ul {
    list-style: disc;
    padding-left: 20px;
}

#experience div {
    margin-bottom: 30px;
}

#contact ul li {
    font-size: 1.1em;
}
