* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

:root {
  --primary: #3498db;
  --primary-dark: #2980b9;
  --secondary: #2ecc71;
  --dark: #2c3e50;
  --light: #ecf0f1;
  --text: #34495e;
  --text-light: #7f8c8d;
}

.hero-section {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  background: linear-gradient(to right, #f8f9fa 0%, #dfe6e9 100%);
  padding: 2rem;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  width: 100%;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-text h1 span {
  color: var(--primary);
}

.subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-icon {
  margin-right: 0.5rem;
}

.client-btn {
  background-color: var(--primary);
  color: white;
}

.client-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.business-btn {
  background-color: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.business-btn:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.features-section {
  padding: 5rem 2rem;
  background-color: white;
  max-width: 1200px;
  margin: 0 auto;
}

.features-section h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(52, 152, 219, 0.1);
  color: var(--primary);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background-color: rgba(52, 152, 219, 0.2);
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
}

.benefits-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--primary);
  min-width: 60px;
}

.benefit-content h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.benefit-content p {
  color: var(--text-light);
  line-height: 1.6;
}

.footer {
  text-align: center;
  padding: 2rem;
  background-color: var(--dark);
  color: white;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    margin-bottom: 3rem;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .subtitle {
    margin: 0 auto 2rem;
  }

  .cta-buttons {
    justify-content: center;
  }

  .benefit-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Header */
.main-header {
  background-color: var(--dark);
  color: white;
  padding: 1rem 2rem;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.main-header h1 {
  font-size: 1.5rem;
}

.main-header nav a {
  color: white;
  text-decoration: none;
  margin-left: 1.5rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-header nav a:hover {
  color: var(--primary);
}
