* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  color: #181a1b;
  background: #eefaf4;
}

a {
  color: inherit;
}

.plug-page {
  min-height: 100vh;
  padding: 0 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #eefaf4;
}

.plug-header {
  width: 100%;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo {
  width: 150px;
  height: auto;
  display: block;
}

.plug-card {
  width: 100%;
  max-width: 820px;
  margin: auto 0;
  padding: 48px;
  border: 1px solid rgba(65, 191, 123, 0.16);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(24, 26, 27, 0.08);
}

.plug-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.title {
  max-width: 720px;
  margin: 0 0 20px;
  color: #41bf7b;
  font-size: 44px;
  font-weight: 700;
  line-height: 125%;
}

.description {
  max-width: 600px;
  margin: 0 0 38px;
  color: rgba(24, 26, 27, 0.72);
  font-size: 18px;
  font-weight: 600;
  line-height: 145%;
}

.contact-card {
  width: 100%;
  max-width: 680px;
  margin-bottom: 34px;
  padding: 28px;
  border: 1px solid rgba(65, 191, 123, 0.14);
  border-radius: 20px;
  background: #f4fcf7;
}

.contact-title {
  margin: 0 0 18px;
  color: #181a1b;
  font-size: 24px;
  font-weight: 700;
  line-height: 135%;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-link {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #41bf7b;
  border-radius: 12px;
  background: #ffffff;
  color: #41bf7b;
  font-size: 16px;
  font-weight: 700;
  line-height: 135%;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-link-primary {
  background: #41bf7b;
  color: #ffffff;
}

.contact-link:hover,
.contact-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(65, 191, 123, 0.18);
  outline: none;
}

.social-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-title {
  margin: 0 0 16px;
  color: rgba(24, 26, 27, 0.72);
  font-size: 16px;
  font-weight: 600;
  line-height: 135%;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-link {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f2f2f2;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  background: #ffffff;
  outline: 2px solid rgba(65, 191, 123, 0.28);
  outline-offset: 3px;
}

.social-link img {
  width: 20px;
  height: 20px;
  display: block;
}

.plug-footer {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(24, 26, 27, 0.56);
  font-size: 14px;
  font-weight: 500;
  line-height: 135%;
}

@media screen and (max-width: 720px) {
  .plug-page {
    padding: 0 20px;
  }

  .plug-header {
    min-height: 78px;
  }

  .plug-card {
    padding: 32px 22px;
    border-radius: 22px;
  }

  .title {
    font-size: 32px;
  }

  .description {
    font-size: 16px;
  }

  .contact-card {
    padding: 22px 16px;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-link {
    width: 100%;
  }
}

@media screen and (max-width: 420px) {
  .logo {
    width: 132px;
  }

  .title {
    font-size: 28px;
  }

}
