* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, #1a1a2e 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, #16213e 0%, transparent 50%),
              radial-gradient(circle at 40% 80%, #0f3460 0%, transparent 50%);
  z-index: -1;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: #00d4ff;
  text-decoration: none;
}

.contact-btn {
  background: linear-gradient(45deg, #00d4ff, #0099cc);
  color: #000;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.3);
}

.main-content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 2rem 0;
}

.hero-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 212, 255, 0.1);
  color: #00d4ff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  width: fit-content;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #b0b0b0;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.services-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #00d4ff;
  transform: translateY(-2px);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-icon {
  font-size: 1.5rem;
  color: #00d4ff;
  width: 40px;
  height: 40px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
}

.service-description {
  color: #b0b0b0;
  line-height: 1.6;
  font-size: 0.95rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.feature-icon {
  color: #00d4ff;
  font-size: 1rem;
}

.feature-text {
  font-size: 0.9rem;
  color: #d0d0d0;
}

.cta-section {
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
}

.cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  justify-content: center;
  align-items: center;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  color: #00d4ff;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 6px;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}

.cta-link:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: #00d4ff;
}

.email-link {
  font-size: 1.1rem;
  color: #00d4ff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 20px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.email-link:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: #00d4ff;
}

@media (max-width: 768px) {
  .main-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1rem 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 1rem;
  }
}
1~* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, #1a1a2e 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, #16213e 0%, transparent 50%),
              radial-gradient(circle at 40% 80%, #0f3460 0%, transparent 50%);
  z-index: -1;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: #00d4ff;
  text-decoration: none;
}

.contact-btn {
  background: linear-gradient(45deg, #00d4ff, #0099cc);
  color: #000;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.3);
}

.main-content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 2rem 0;
}

.hero-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 212, 255, 0.1);
  color: #00d4ff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  width: fit-content;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #b0b0b0;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.services-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #00d4ff;
  transform: translateY(-2px);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-icon {
  font-size: 1.5rem;
  color: #00d4ff;
  width: 40px;
  height: 40px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
}

.service-description {
  color: #b0b0b0;
  line-height: 1.6;
  font-size: 0.95rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.feature-icon {
  color: #00d4ff;
  font-size: 1rem;
}

.feature-text {
  font-size: 0.9rem;
  color: #d0d0d0;
}

.cta-section {
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
}

.cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  justify-content: center;
  align-items: center;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  color: #00d4ff;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 6px;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}

.cta-link:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: #00d4ff;
}

.email-link {
  font-size: 1.1rem;
  color: #00d4ff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 20px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.email-link:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: #00d4ff;
}

@media (max-width: 768px) {
  .main-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1rem 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 1rem;
  }
}
