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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
}

.navbar {
  background-color: rgba(10, 10, 10, 0.95);
  padding: 0.2rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #7fb539;
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  height: 180px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  font-size: 1.6rem;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: #7fb539;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #7fb539;
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.hero {
  margin-top: 128px;
  padding: 6rem 5% 4rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.hero-content {
  text-align: center;
  margin-bottom: 4rem;
}

.hero h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #7fb539, #a0d84e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.3rem;
  color: #b0b0b0;
  max-width: 800px;
  margin: 0 auto;
}

.services {
  padding: 4rem 5%;
  background: linear-gradient(180deg, rgba(127, 181, 57, 0.05) 0%, rgba(10, 10, 10, 0) 100%);
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h3 {
  font-size: 2.5rem;
  color: #7fb539;
  margin-bottom: 0.5rem;
}

.section-title p {
  color: #a0a0a0;
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  border: 1px solid #2a2a2a;
  border-radius: 15px;
  padding: 2.5rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #7fb539, #a0d84e);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.service-card:hover {
  border-color: #7fb539;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(127, 181, 57, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #7fb539, #a0d84e);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 1.5rem;
}

.service-card h4 {
  color: #7fb539;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: #b0b0b0;
  line-height: 1.8;
}

.pricing-banner {
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
  border: 2px solid #7fb539;
  border-radius: 15px;
  padding: 3rem;
  text-align: center;
  margin: 3rem auto;
  max-width: 900px;
  position: relative;
  overflow: hidden;
}

.pricing-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(127, 181, 57, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.pricing-content {
  position: relative;
  z-index: 1;
}

.pricing-banner h4 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.price-highlight {
  font-size: 3rem;
  color: #7fb539;
  font-weight: 700;
  margin: 1rem 0;
}

.pricing-banner p {
  color: #b0b0b0;
  font-size: 1.1rem;
}

.cta-section {
  padding: 5rem 5%;
  text-align: center;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(127, 181, 57, 0.05) 100%);
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.cta-section p {
  font-size: 1.2rem;
  color: #b0b0b0;
  margin-bottom: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-item {
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s;
}

.contact-item:hover {
  border-color: #7fb539;
  transform: translateX(5px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #7fb539, #a0d84e);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-details {
  text-align: left;
}

.contact-details h5 {
  color: #7fb539;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.contact-details a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.contact-details a:hover {
  color: #7fb539;
}

footer {
  background-color: #0a0a0a;
  padding: 2rem 5%;
  text-align: center;
  border-top: 2px solid #7fb539;
}

footer p {
  color: #a0a0a0;
}

footer a {
  color: #7fb539;
  text-decoration: none;
  margin: 0 0.5rem;
}

footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .logo-img {
    height: 80px;
  }

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

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