/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
header {
  display: flex;
  justify-content: flex-end;
  padding: 10px 0;
}

.icon-links {
  list-style-type: none;
  display: flex;
  gap: 20px;
}

.icon-links li a {
  font-size: 24px;
  color: #333;
  text-decoration: none;
}

.icon-links li a:hover {
  color: #007BFF;
}

/* About Section */
.about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.about .text {
  flex: 1;
  max-width: 600px;
}

.about .text h1 {
  font-size: 36px;
  color: #333;
  margin-bottom: 10px;
}

.about .text p {
  font-size: 18px;
  color: #555;
}

.about .photo {
  flex: 1;
  max-width: 300px;
  text-align: center;
}

.about .photo img {
  width: 50%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Publications Section */
.publications {
  margin-top: 60px;
}

.publications h2 {
  font-size: 30px;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
}

.publication {
  margin-bottom: 30px;
}

.publication h3 {
  font-size: 24px;
  color: #007BFF;
}

.publication p {
  font-size: 18px;
  color: #555;
  margin-bottom: 10px;
}

.buttons {
  margin-top: 10px;
}

.buttons a {
  text-decoration: none;
  color: #fff;
  background-color: #007BFF;
  padding: 8px 16px;
  margin-right: 10px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.buttons a:hover {
  background-color: #0056b3;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 60px;
  padding: 20px;
  background-color: #333;
  color: #fff;
}

footer p {
  font-size: 16px;
}
