/* General Styles */
body {
  font-family: 'Roboto', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-image: url("https://g.top4top.io/p_3402ubgc01.jpg");
  background-size: cover;
  background-attachment: fixed;
  color: #333;
}

a {
  text-decoration: none;
  color: #007bff;
}

a:hover {
  text-decoration: underline;
}

/* Header Styles */
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.top-image {
  display: flex;
  align-items: center;
}

.top-image img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.top-image span {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: #007bff;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #0056b3;
}

/* About Section */
.about-section {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 50px 30px;
  border-radius: 15px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  max-width: 900px;
  margin: 60px auto;
  text-align: center;
}

.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.about-container img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 5px solid #007bff;
}

.about-text h1 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #000;
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #555;
}

.about-text strong {
  color: #007bff;
}

/* Footer */
.footer {
  text-align: center;
  padding: 15px;
  background-color: #f8f9fa;
  border-top: 1px solid #ddd;
  font-size: 14px;
  color: #555;
}