/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #0f172a;
  background-color: #ffffff;
}

/* Color variables matching Tailwind classes */
:root {
  --primary: #b34126;
  --accent: #b34126;
  --background: #ffffff;
  --foreground: #0f172a;
  --muted-foreground: #64748b;
  --secondary: #f1f5f9;
  --card: #ffffff;
  --card-foreground: #0f172a;
  --border: #e2e8f0;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }
}

/* Section */
.about-section {
  padding: 5rem 0;
  background-color: var(--background);
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 4rem;
}

.header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .header h2 {
    font-size: 3rem;
  }
}

/* Grid layout */
.main-grid {
  display: grid;
  gap: 4rem;
  align-items: start;
  margin-bottom: 5rem;
}

@media (min-width: 1024px) {
  .main-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Logo section */
.logo-section {
  position: relative;
}

.logo-container {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.1),
    rgba(139, 92, 246, 0.1)
  );
  border-radius: 1rem;
  padding: 3rem;
  text-align: center;
}

.logo-wrapper {
  width: 8rem;
  height: 8rem;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-image {
  width: 5rem;
  height: 5rem;
  object-fit: contain;
}

.company-name {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.company-subtitle {
  color: var(--muted-foreground);
  font-weight: 500;
}

/* Content section */
.content-section h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.content-text {
  color: var(--muted-foreground);
  line-height: 1.7;
}

.content-text p {
  margin-bottom: 1rem;
}

/* Stats grid */
.stats-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Card styles */
.card {
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  color: var(--card-foreground);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  text-align: center;
  padding: 2rem;
  border: 0;
  background-color: rgba(241, 245, 249, 0.3);
  transition: background-color 0.2s ease;
}

.card:hover {
  background-color: rgba(241, 245, 249, 0.5);
}

.card-content {
  padding: 0;
}

.stat-value {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--muted-foreground);
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .about-section {
    padding: 3rem 0;
  }

  .header {
    margin-bottom: 2rem;
  }

  .main-grid {
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .logo-container {
    padding: 2rem;
  }

  .company-name {
    font-size: 1.5rem;
  }

  .content-section h3 {
    font-size: 1.5rem;
  }

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

  .card {
    padding: 1.5rem;
  }

  .stat-value {
    font-size: 1.875rem;
  }
}
