Changed around line 1
+ body {
+ font-family: 'Arial', sans-serif;
+ margin: 0;
+ padding: 0;
+ background-color: #f4f4f9;
+ color: #333;
+ }
+
+ header {
+ background: linear-gradient(135deg, #6a11cb, #2575fc);
+ color: white;
+ padding: 60px 20px;
+ text-align: center;
+ }
+
+ header h1 {
+ font-size: 2.5em;
+ margin: 0;
+ }
+
+ header p {
+ font-size: 1.2em;
+ margin: 10px 0 0;
+ }
+
+ nav {
+ background: #333;
+ padding: 10px 0;
+ text-align: center;
+ }
+
+ nav ul {
+ list-style: none;
+ padding: 0;
+ margin: 0;
+ }
+
+ nav ul li {
+ display: inline;
+ margin: 0 15px;
+ }
+
+ nav ul li a {
+ color: white;
+ text-decoration: none;
+ font-size: 1.1em;
+ }
+
+ main {
+ padding: 20px;
+ }
+
+ section {
+ margin-bottom: 40px;
+ }
+
+ h2 {
+ font-size: 2em;
+ margin-bottom: 20px;
+ color: #2575fc;
+ }
+
+ .about-content {
+ display: flex;
+ align-items: center;
+ gap: 20px;
+ }
+
+ .profile-img {
+ border-radius: 50%;
+ width: 150px;
+ height: 150px;
+ object-fit: cover;
+ }
+
+ .project-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 20px;
+ }
+
+ .project-card {
+ background: white;
+ padding: 20px;
+ border-radius: 8px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ }
+
+ .publication-list {
+ list-style: none;
+ padding: 0;
+ }
+
+ .publication-list li {
+ background: white;
+ padding: 10px;
+ margin-bottom: 10px;
+ border-radius: 4px;
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
+ }
+
+ .teaching-content {
+ background: white;
+ padding: 20px;
+ border-radius: 8px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ }
+
+ footer {
+ background: #333;
+ color: white;
+ text-align: center;
+ padding: 20px;
+ margin-top: 40px;
+ }
+
+ footer a {
+ color: #2575fc;
+ text-decoration: none;
+ }
+
+ @media (max-width: 768px) {
+ .about-content {
+ flex-direction: column;
+ text-align: center;
+ }
+
+ .profile-img {
+ margin-bottom: 20px;
+ }
+
+ nav ul li {
+ display: block;
+ margin: 10px 0;
+ }
+ }