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

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
}

header {
  text-align: center;
  margin-bottom: 40px;
  width: 100%;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.logo {
  max-width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

main {
  flex: 1;
  width: 100%;
  max-width: 800px;
}

.contact-info {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contact-info h2 {
  margin-bottom: 20px;
  color: #464646;
  font-size: 24px;
  position: relative;
  padding-bottom: 10px;
}

.contact-info h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: #ffb700;
}

.phones,
.email {
  margin-bottom: 20px;
}

.phones p,
.email p {
  margin-bottom: 10px;
}

.phones a {
  color: #555;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

.phones a:hover {
  color: #ffb700;
}

#email-protected {
  font-size: 18px;
  color: #555;
}

footer {
  text-align: center;
  margin-top: 40px;
  padding: 20px 0;
  width: 100%;
  color: #666;
}

@media (max-width: 768px) {
  .container {
    padding: 15px;
  }

  .logo {
    max-width: 200px;
  }

  .contact-info {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .logo {
    max-width: 150px;
  }

  .contact-info h2 {
    font-size: 20px;
  }

  .phones a,
  #email-protected {
    font-size: 16px;
  }
}
