body {
  font-family: 'Shabnam', Tahoma, sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
  color: #444;
  font-size: 18px;
  line-height: 1.8;
}

p {
  text-align: justify;
}

h1 , h2 , h3 {
	margin-top : 0.5rem;
}

.site-header {
  background: linear-gradient(135deg, #1565c0, #1e88e5);
  color: #fff;
  padding: 40px 20px 15px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  height: 70px;
  margin: 0;
}

.logo-img {
  height: 70px;
  filter: brightness(405%);
  margin-bottom: 8px;
}

.site-header h1 {
  color: #fff;
  font-size: 3em;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  user-select: none;
}

.site-header h1 i {
  font-size: 1.8em;
  color: #bbe1ff;
}

.site-header p {
  margin-top: 6px;
  font-size: 22px;
  font-weight: 500;
  opacity: 0.85;
  margin-bottom: 20px;
}

.site-nav {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255 255 255 / 0.35);
  display: flex;
  justify-content: center;
  gap: 28px;
  user-select: none;
  width: 100%;
}

.site-nav a {
  color: #d0dfff;
  margin: 0 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: 0.25s;
}

.site-nav a:hover {
  border-bottom-color: #bbe1ff;
  color: #bbe1ff;
}

.container {
  max-width: 1000px;
  margin: 40px auto;
  background: white;
  padding: 10px 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.section {
  margin-bottom: 50px;
}

h2 {
  color: #1565c0;
  font-weight: bold;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.services {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.card {
  flex: 1 1 45%;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  background: #fefefe;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card:hover {
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

.card i {
  font-size: 40px;
  color: #1e88e5;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #0d47a1;
  border-bottom: 2px solid #1e88e5;
  padding-bottom: 6px;
}

.card p {
  font-size: 15px;
  margin-bottom: 10px;
  flex-grow: 1;
}

.links-section {
  border-top: 1px solid #ddd;
  padding-top: 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.links-section a {
  color: #888c9b;
  font-weight: 600;
  text-decoration: none;
  font-size: 14.5px;
  transition: 0.2s;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

.links-section a:hover {
  border-bottom-color: #ff9800;
  color: #1e88e5;
}

.testimonials h3,
.news h3 {
  color: #1565c0;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 1.4em;
  text-align: right;
}

.testimonials p {
  font-style: italic;
  margin: 7px 0;
  color: #555;
  font-size: 16px;
  text-align: right;
}

.news ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  color: #555;
  font-size: 16px;
  line-height: 1.5;
  text-align: right;
}

.news ul li {
  margin-bottom: 8px;
}

footer {
  background-color: #eeeeee;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #777;
  margin-top: 40px;
  user-select: none;
}

footer a {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 768px) {
  body {
    font-size: 17px;
  }
  
  .container {
    margin: 0;
    padding: 10px 15px;
	border-radius: 0px;
    box-shadow: 0;
  }
  
  .services {
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 100%;
    margin-bottom: 15px;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 14px;
  }
}

.footer-nav {
  margin-bottom: 12px;
  font-size: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.footer-nav .footer-link {
  color: #555;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s;
}

.footer-nav .footer-link:hover {
  color: #1e88e5;
}

.footer-nav .sep {
  color: #ccc;
  user-select: none;
}

.site-footer {
  background-color: #eeeeee;
  text-align: center;
  padding: 25px 10px 15px;
  font-size: 14px;
  color: #777;
  user-select: none;
  line-height: 1.8;
}

.faq-section {
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-weight: 700;
  font-size: 1em;
  margin-bottom: 8px;
  color: #1565c0;
}

.faq-item p {
  font-size: 16px;
  color: #444;
  line-height: 1.5;
  margin: 0;
}
