/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #f8f9fa; /* Light gray background for a modern look */
  color: #333; /* Dark gray text for readability */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 20px;
}

/* Logo Section */
.logo-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}

.logo-section img {
  width: 200px;
  height: 200px;
  border-radius: 50%; /* Makes images circular */
  margin: 0 20px;
}

.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.text-section a {
  text-decoration: none;
  color: #007BFF; /* Blue text for links */
  font-size: 1.5rem;
  font-weight: bold;
  transition: color 0.3s ease;
}

.text-section a:hover {
  color: #0056b3; /* Darker blue on hover */
}

/* Adjustments for Fiber Optics Section */
.fibers-text {
  align-items: flex-end;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .logo-section {
    flex-direction: column;
  }

  .text-section {
    align-items: center;
  }

  .logo-section img {
    margin: 20px 0;
  }
}
