.contacts-section {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.contact-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.contact-header h2 {
  font-size: 2rem;
  color: #1a202c;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.contact-subtitle {
  color: #718096;
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.contact-card {
  display: flex;
  gap: 1.2rem;
  padding: 1.5rem;
  border-radius: 10px;
  background: #f8fafc;
  transition: all 0.3s ease;
  border: 1px solid #edf2f7;
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  border-color: #e2e8f0;
}
.contact-icon-bg {
  width: 56px;
  height: 56px;
  background: #e6f7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon {
  width: 28px;
  height: 28px;
  fill: #3182ce;
}
.contact-details-01 {
  flex: 1;
}
.contact-details-01 h3 {
  font-size: 1.25rem;
  color: #2d3748;
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.contact-details-01 p {
  color: #718096;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}
.contact-details-01 a {
  display: inline-block;
  color: #3182ce;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.2s;
  margin-top: 0.3rem;
}
.contact-details-01 a:hover {
  color: #2b6cb0;
  text-decoration: underline;
}
.social-block {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #edf2f7;
}
.social-block h3 {
  font-size: 1.4rem;
  color: #2d3748;
  margin-bottom: 0.5rem;
}
.social-block p {
  color: #718096;
  margin-bottom: 1.5rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.social-links a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  background: #f8fafc;
  text-decoration: none;
  color: #4a5568;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}
.social__qr {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.social__qr img{
  width: 30vh;
  height: 30vh;
  gap: 1vh;
}
.social-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  background: #fff;
  color: #3182ce;
}
.social-links a:hover svg {
  fill: #3182ce;
}
.social-links svg {
  width: 22px;
  height: 22px;
  fill: #718096;
  transition: fill 0.3s ease;
}
.social-links span {
  font-weight: 500;
}
@media (max-width: 768px) {
  .contacts-section {
    padding: 1.5rem;
    margin: 1rem;
  }
  .contact-methods {
    grid-template-columns: 1fr;
  }
  .social-links {
    flex-direction: column;
    align-items: center;
  }
  .social-links a {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .contact-card {
    flex-direction: column;
    text-align: center;
  }
  .contact-icon-bg {
    margin: 0 auto;
  }
}