/* Overall Body Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #e0e0e0;
    color: #333;
    line-height: 1.6;
    transition: background-color 0.3s ease-in-out;
}

/* Header Section */
header {
    background: linear-gradient(to right, #004d40, #00796B);
    color: white;
    text-align: center;
    padding: 40px 0;
}

/* Profile Image */
.profile-img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    margin-right: 40px;
    margin-left: -20px;
}

/* Header Text */
h1 {
    font-size: 2.7em;
    margin-bottom: 15px;
}

/* Navigation */
nav ul {
    background-color: #004d40;
    display: flex;
    justify-content: center;
    list-style-type: none;
    padding: 15px;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #ff6f61;
    border-radius: 5px;
}

/* Content Sections */
.content-section {
    padding: 40px;
    background-color: white;
    margin: 30px auto;
    max-width: 1200px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #009688;
    margin-bottom: 20px;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
    padding-bottom: 15px;
}

ul li {
    margin-bottom: 10px;
}

ul li a {
    color: #00796B;
    text-decoration: none;
}

ul li a:hover {
    text-decoration: underline;
}

/* Social Links */
.social-links ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

.social-links ul li {
    margin: 0 10px;
}

.social-links ul li a {
    color: #009688;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.social-links ul li a:hover {
    color: #004d40;
}

/* Header Flexbox Layout */
.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background-color: #004d40;
    color: white;
}

.header-text {
    text-align: center;
}

.header-text h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.header-text p {
    margin: 5px 0;
}
