:root {
  --primary-color: #a7d707;
  --text-dark: #070707;
  --text-gray: #666;
  --bg-light: #f7f7f7;
  --border-color: #e5e7eb;
  --shadow-color: rgba(0, 0, 0, 0.05);
}

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

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-light);
}

.page-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 100vh;
}

.content-wrapper {
  width: 100%;
  max-width: 1200px;
  padding: 48px 16px;
}

/* Header Styles */
.company-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 64px;
}

.company-logo {
  width: 120px;
  height: 120px;
  margin-bottom: 32px;
}

.company-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.company-description {
  font-size: 18px;
  color: var(--text-gray);
  max-width: 600px;
}

/* Navigation Styles */
.tab-navigation {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 32px;
}

.tab-button {
  padding: 12px 24px;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-gray);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.tab-button.active {
  color: var(--text-dark);
  border-bottom: 2px solid var(--primary-color);
}

/* Overview Section Styles */
.overview-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.info-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0px 4px 12px var(--shadow-color);
}

.card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.card-text {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.6;
}

.approach-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.approach-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.check-icon {
  width: 24px;
  height: 24px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}

.approach-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.approach-description {
  font-size: 14px;
  color: var(--text-gray);
}

/* Achievements Section Styles */
.achievements-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0px 4px 12px var(--shadow-color);
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: var(--text-gray);
}

/* Clients Section Styles */
.clients-section {
  width: 100%;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.client-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0px 4px 12px var(--shadow-color);
  color: var(--text-dark);
  font-weight: 600;
}

/* CTA Section Styles */
.cta-section {
  width: 100%;
  background-color: var(--text-dark);
  margin-top: 64px;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}

.cta-title {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.cta-description {
  font-size: 16px;
  color: var(--bg-light);
  margin-bottom: 24px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.cta-button {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.cta-button:hover {
  opacity: 0.9;
}

.cta-button.primary {
  background-color: var(--primary-color);
  color: var(--text-dark);
}

.cta-button.secondary {
  background-color: white;
  color: var(--text-dark);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .overview-section {
    grid-template-columns: 1fr;
  }

  .achievements-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .content-wrapper {
    padding: 32px 16px;
  }

  .company-header {
    margin-bottom: 32px;
  }

  .tab-navigation {
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .client-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .achievements-section {
    grid-template-columns: 1fr;
  }

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

  .cta-buttons {
    flex-direction: column;
  }

  .company-title {
    font-size: 28px;
  }

  .company-description {
    font-size: 16px;
  }
}
