body {
  margin: 0;
  font-family: 'Georgia', serif;
  background-color: #f5f5f5;
  color: #333;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #f8f8f8;
}

.logo {
  height: 80px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  border-bottom: 2px solid transparent;
}

nav a:hover,
nav a.active {
  border-bottom: 2px solid #FFC512;
}

.contact-section {
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-section h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.social-links a {
  text-decoration: none;
  color: #333;
  font-size: 1.2em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-links img {
  width: 50px;
  height: 50px;
   object-fit: contain; 
}

.note {
  font-style: italic;
  color: #666;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #f8f8f8;
}

