body, h1, h2, h3, h4, p, ul, li, a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", "Noto Sans Armenian", sans-serif;
  background-color: #f2f6fa;
  color: #333;
  line-height: 1.6;
}

header {
  background-color: #004e80;
  color: white;
  padding: 20px;
  text-align: center;
}

header h1 {
  font-size: 28px;
  font-weight: 700;
}

nav {
  margin-top: 10px;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-size: 16px;
  transition: color 0.3s;
}

nav a:hover,
nav a.active {
  color: #a3d2f7;
  font-weight: bold;
}

.hero {
  background-color: #006bb3;
  color: white;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  height: 30vh;
}

.hero-content{
  display: flex;
  flex-wrap: wrap;
  width: 50%;
  margin: auto;
  align-items: center;
  align-content: center;
  height: 70%;
  justify-content: center;
}


.hero-content h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn-primary {
  background-color: #ffffff;
  color: #004e80;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-primary:hover {
  background-color: #004e80;
  color: white;
}


.content-wrapper {
  background-color: #ffffff;
  margin: 40px auto;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 78, 128, 0.1);
}

main {
      max-width: 1100px;
      margin: 40px auto;
      padding: 0 20px;
    }
    section {
      margin-bottom: 60px;
    }
    h3 {
      font-weight: 700;
      font-size: 28px;
      margin-bottom: 20px;
      color: #004e80;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
      gap: 25px;
    }
    .service-card {
      background: white;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.07);
      text-align: center;
      transition: transform 0.3s ease;
    }
    .service-card:hover {
      transform: translateY(-8px);
    }
    .service-card img {
      max-width: 100px;
      margin-bottom: 15px;
    }
    .service-card h4 {
      margin: 10px 0;
      font-size: 20px;
      color: #006bb3;
    }
    .service-card p {
      font-size: 16px;
      color: #555;
      line-height: 1.4;
    }

.content-wrapper h3 {
  font-size: 30px;
  text-align: center;
  color: #004e80;
  margin-bottom: 25px;
}

.content-wrapper h4 {
  font-size: 22px;
  color: #006bb3;
  margin-top: 25px;
  margin-bottom: 15px;
}

.content-wrapper p,
.content-wrapper li {
  font-size: 17px;
  color: #444;
}

.content-wrapper ul {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 20px;
}

.language-switcher {
  margin-top: 10px;
}

.language-switcher button {
  background-color: white;
  color: #004e80;
  border: 1px solid transparent;
  margin: 0 5px;
  padding: 6px 12px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.language-switcher button:hover {
  background-color: #004e80;
  color: white;
}


footer {
  background-color: #004e80;
  color: white;
  padding: 40px 20px;
  font-size: 14px;
}

footer h4 {
  color: #a3d2f7;
  font-size: 16px;
  margin-bottom: 10px;
}

footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #a3d2f7;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer li {
  margin-bottom: 8px;
}

footer .fa-brands {
  font-size: 20px;
  transition: color 0.3s;
}

footer .fa-brands:hover {
  color: #a3d2f7;
}

footer div:last-child {
  text-align: center;
  font-size: 12px;
  color: #ccc;
  margin-top: 20px;
}

/* Համբուրգեր կոճակի սկզբնական ձևավորում */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
  margin-top: 10px;
}

/* Media query - միայն բջջայինի համար */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #004e80;
    padding: 10px 0;
  }

  nav.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .hero{
    height: 20vh;
  }

.hero-content{
  width: 100%;
}
}


