* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #ffffff;
}

/* ================= TOP BAR ================= */
.top-bar {
  width: 100%;
  background: #32614D;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 🔥 ԼՈԳՈՆ ՄԻ ՔԻՉ ՁԱԽ */
.logo {
  margin-left: -6px;
}

.logo img {
  height: 60px;
}

.social-icons a {
  color: white;
  font-size: 22px;
  margin-left: 14px;
  text-decoration: none;
}

.social-icons a:hover {
  opacity: 0.7;
}

/* ================= MAIN SECTION (DESKTOP) ================= */
.main-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 140px 120px;
}

.content {
  max-width: 50%;
}

.content h1 {
  font-size: 38px;
  margin-bottom: 20px;
  color: #32614D;
}

.content p {
  font-size: 18px;
  margin-bottom: 14px;
}

/* ================= BUTTON ================= */
button {
  margin-top: 14px;
  padding: 12px 26px;
  background: #f7970f;
  border: none;
  color: white;
  font-size: 18px;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  opacity: 0.9;
}

.image-box img {
  width: 360px;
  margin-left: 40px;
  margin-top: -120px;
}

/* ================= CONTACT PANEL ================= */
.contact-panel {
  position: fixed;
  top: 0;
  right: -360px;
  width: 360px;
  height: 100%;
  background: #32614D;
  color: white;
  transition: right 0.4s ease;
  z-index: 2000;
}

.contact-panel.open {
  right: 0;
}

/* ================= 📱 MOBILE (FINAL BALANCED VERSION) ================= */
@media (max-width: 768px) {

  /* HEADER */
  .top-bar {
    padding: 10px 14px;
  }

  .logo {
    margin-left: -8px; /* 🔥 մի քիչ էլ ձախ */
  }

  .logo img {
    height: 56px;
  }

  .social-icons a {
    font-size: 21px;
    margin-left: 12px;
  }

  /* MAIN */
  .main-section {
    display: block !important;
    padding: 24px 16px !important;
  }

  /* TEXT */
  .content {
    max-width: 100% !important;
    width: 100% !important;
    margin-bottom: 18px !important;
    text-align: center; /* 🔥 ԿՈՃԱԿԸ ԿԵՆՏՐՈՆ */
  }

  .content h1 {
    font-size: 31px !important;
    line-height: 1.25;
    margin-bottom: 14px;
  }

  .content p {
    font-size: 16.5px !important;
    line-height: 1.55;
    margin-bottom: 12px;
  }

  /* 🔥 CONTACT US BUTTON ԿԵՆՏՐՈՆ */
  .content button {
    display: inline-block;
    margin: 14px auto 0;
  }

  /* IMAGE */
  .image-box {
    width: 100%;
    text-align: center;
  }

  /* 🔥 ՆԿԱՐԸ ՄԻ ՔԻՉ ՓՈՔՐ */
  .image-box img {
    width: 70vw !important;
    max-width: 300px;
    margin: 0 auto !important;
    display: block;
  }

  /* CONTACT PANEL */
  .contact-panel {
    width: 100%;
    right: -100%;
  }

  .contact-panel.open {
    right: 0;
  }
}

/* ================= EXTRA SMALL ================= */
@media (max-width: 480px) {
  .content h1 {
    font-size: 29px !important;
  }

  .content p {
    font-size: 16px !important;
  }

  .image-box img {
    max-width: 280px;
  }
}

/* ================= VERY SMALL ================= */
@media (max-width: 360px) {
  .content h1 {
    font-size: 27px !important;
  }

  .image-box img {
    max-width: 260px;
  }
}
