/*Reset some default styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Body styling */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

/* Profile Header */
.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ccc;
    margin-bottom: 15px;
}

h1 {
    font-family: 'Bodoni', serif; /* Use Bodoni if available, fallback to sans-serif */
    font-size: 2em;
    margin-bottom: 5px;
}

.title {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 5px;
}

.email {
    font-size: 1em;
    color: #777;
}

/* About Me Section */
.about-me {
    max-width: 800px;
    margin: 0 auto 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.about-me h2 {
    margin-bottom: 15px;
    font-size: 1.8em;
    color: #222;
}

.about-me p {
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.6;
}

/* Skills Section */
.skills-section {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #e0e0e0; /* Light gray background */
    border: 2px solid #ccc;
    border-radius: 8px;
    text-align: center;
}

.skills-section h2 {
    margin-bottom: 15px;
    font-size: 1.8em;
    color: #222;
}

.skills-section ul {
    list-style-type: none;
    padding: 0;
}

.skills-section li {
    padding: 8px 0;
    font-size: 1.1em;
}

/* Container for side-by-side sections */
.main-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 40px auto;
    padding: 20px;
}

/* Left and right sections */
.left-section, .right-section {
    width: 48%;
    box-sizing: border-box;
    padding: 20px;
    background-color: #fff;
    border: 2px solid #ccc; /* Same as previous border */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

/* Style for the right section content */
.right-section h2 {
    margin-bottom: 15px;
    font-size: 1.8em;
    color: #222;
}

.right-section p {
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.6;
}
