body {
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  color: #333;
  background: #f9fbfd;
  line-height: 1.6;
}

.link {
    text-decoration: none;
    color: #6fa8dc;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.about-container p {
  display: block;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Header */
.site-header {
  background: linear-gradient(135deg, #6fa8dc, #4682b4);
  color: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
}

.logo {
  width: 100px;
  margin-right: 10px;
}

.company {
  margin: 0;
  font-size: 22px;
}

.tagline {
  margin: 0;
  font-size: 14px;
  color: #e0ecf5;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
}

.main-nav a:hover {
  color: #dceeff;
}

.main-nav a.active {
  border-bottom: 2px solid #fff;
  padding-bottom: 2px;
}

.language {
  cursor: pointer;
  height: 40px;
  margin-left: 15px;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}

.language:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
}

.main-nav a:hover {
  color: #dceeff;
}

.main-nav a.active {
  border-bottom: 2px solid #fff;
  padding-bottom: 2px;
}

/* Hamburger button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 15px;
    background: #4682b4;
    flex-direction: column;
    width: 200px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    padding: 10px;
    z-index: 999;
  }

  .main-nav a {
    margin: 10px 0;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .main-nav.show {
    display: flex;
  }
}

/* Hero */
.hero {
  background: #eef4f8;
  padding: 60px 0;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.hero-text {
  flex: 1;
}

.hero-text h2 {
  font-size: 32px;
  color: #336699;
}

.hero-text p {
  margin: 15px 0 25px;
  font-size: 18px;
}

.hero-img {
  flex: 1;
  text-align: center;
}

.hero-img img {
  max-width: 60%;
  border-radius: 10px;
  padding: 20px;
  /* box-shadow: 0 2px 8px rgba(0,0,0,0.15); */
}

/* Sections */
h2 {
  font-size: 24px;
  margin: 40px 0 20px;
  color: #336699;
}

.services .grid,
.features .grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card, .feature {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.card img {
  max-width: 100%;
  border-radius: 6px;
  margin-bottom: 15px;
}

.card h3, .feature h3 {
  margin-top: 0;
  color: #444;
}

/* CTA */
.cta {
  background: #6fa8dc;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
  margin: 40px 0;
}

.cta h2 {
  margin: 0 0 15px;
  color: #fff;
}

.btn {
  background: #336699;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.btn:hover {
  background: #264d73;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 20px;
  background: #eef4f8;
  font-size: 14px;
  color: #666;
  margin-top: 40px;
}

.social-media {
  cursor: pointer;
  height: 50px;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}

.social-media:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .language {
    margin-left: 0px;
  }
}
