:root {
  --background: oklch(0.99 0.005 85);
  --foreground: oklch(0.15 0.01 85);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.15 0.01 85);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.15 0.01 85);
  --primary: oklch(0.65 0.15 35);
  --primary-foreground: oklch(0.99 0.005 85);
  --secondary: oklch(0.96 0.01 85);
  --secondary-foreground: oklch(0.15 0.01 85);
  --muted: oklch(0.96 0.01 85);
  --muted-foreground: oklch(0.45 0.01 85);
  --accent: oklch(0.75 0.12 25);
  --accent-foreground: oklch(0.99 0.005 85);
  --destructive: oklch(0.577 0.245 27.325);
  --destructive-foreground: oklch(0.98 0.01 85);
  --border: oklch(0.92 0.01 85);
  --input: oklch(0.92 0.01 85);
  --ring: oklch(0.65 0.15 35);
  --radius: 0rem;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  font-size: 16px;
}

.main {
  min-height: 100vh;
  padding-top: 5rem;
}

.hero-section {
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)), url("../../img/pages/about.jpg");
  background-size: cover;
  background-position: center;
}

.hero-bg {
  background-image: url("../../img/pages/about.jpg");
}

.company-info-section {
  padding: 6rem 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f9fafb));
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.company-info-content {
  max-width: 48rem;
  margin: 0 auto;
}

.company-info-table-wrapper {
  margin: 0 auto;
  overflow-x: auto;
}

.company-info-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
}

.company-info-table tbody tr {
  border-bottom: 1px solid #e5e7eb;
}

.company-info-table tbody tr:last-child {
  border-bottom: none;
}

.company-info-table tbody tr:hover {
  background: #f9fafb;
}

.company-info-table th {
  width: 30%;
  padding: 1.5rem;
  text-align: left;
  font-weight: 600;
  color: #ff6b35;
  font-size: 0.9375rem;
  vertical-align: top;
  background: rgba(255, 107, 53, 0.05);
}

@media (max-width: 767px) {
  .company-info-table th {
    width: 35%;
    padding: 1rem;
    font-size: 0.875rem;
  }
}

.company-info-table td {
  padding: 1.5rem;
  color: #313131;
  font-size: 0.9375rem;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .company-info-table td {
    padding: 1rem;
    font-size: 0.875rem;
  }
}

.company-info-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .company-info-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

.info-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 2px solid #e5e7eb;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#ff6b35), to(#ff8556));
  background: linear-gradient(90deg, #ff6b35 0%, #ff8556 100%);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.info-card:hover {
  border-color: #ff6b35;
  -webkit-box-shadow: 0 10px 15px -3px rgba(255, 107, 53, 0.15);
          box-shadow: 0 10px 15px -3px rgba(255, 107, 53, 0.15);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.info-card:hover::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.info-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 0;
}

.info-item:last-child {
  border-bottom: none;
}

.info-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ff6b35;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ff6b35;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-content {
  font-size: 1rem;
  color: black;
  line-height: 1.6;
  white-space: pre-line;
}

.info-value {
  font-size: 1.125rem;
  font-weight: 600;
  color: black;
}

.philosophy-section {
  padding: 6rem 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.philosophy-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.philosophy-description {
  font-size: 1.125rem;
  color: #313131;
  line-height: 1.8;
  margin-top: 1.5rem;
}

.philosophy-main {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 3rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

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

.philosophy-visual {
  position: relative;
}

.philosophy-image {
  border-radius: 1rem;
  overflow: hidden;
  -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.philosophy-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.philosophy-quote {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8556 100%);
  padding: 2.5rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0 10px 15px -3px rgba(255, 107, 53, 0.3);
          box-shadow: 0 10px 15px -3px rgba(255, 107, 53, 0.3);
  position: relative;
}

.philosophy-quote::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-size: 6rem;
  color: rgba(255, 255, 255, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.philosophy-quote blockquote {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.6;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .philosophy-quote blockquote {
    font-size: 1.75rem;
  }
}

.quote-description {
  font-size: 1rem;
  color: white;
  opacity: 0.95;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.philosophy-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: black;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.philosophy-values {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
}

.value-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 2rem;
  background: #f9fafb;
  border-radius: 1rem;
  border: 2px solid transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.value-item:hover {
  background: white;
  border-color: #ff6b35;
  -webkit-box-shadow: 0 10px 15px -3px rgba(255, 107, 53, 0.1);
          box-shadow: 0 10px 15px -3px rgba(255, 107, 53, 0.1);
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.value-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6b35;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  opacity: 0.3;
}

.value-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.value-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: black;
  margin-bottom: 0.75rem;
}

.value-description {
  font-size: 0.9375rem;
  color: #313131;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.value-features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #313131;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.feature-tag:hover {
  border-color: #ff6b35;
  color: #ff6b35;
  background: rgba(255, 107, 53, 0.05);
}

.value-card {
  position: relative;
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 0.75rem;
  border: 2px solid rgba(255, 107, 53, 0.1);
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.06);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: #ff6b35;
  -webkit-box-shadow: 0 12px 20px -6px rgba(255, 107, 53, 0.25);
          box-shadow: 0 12px 20px -6px rgba(255, 107, 53, 0.25);
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.value-icon {
  width: 4rem;
  height: 4rem;
  background: #ff6b35;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 1rem;
  -webkit-box-shadow: 0 6px 14px rgba(255, 107, 53, 0.3);
          box-shadow: 0 6px 14px rgba(255, 107, 53, 0.3);
}

.history-section {
  padding: 6rem 0;
  background: white;
}

.history-header {
  text-align: left;
  margin-bottom: 3rem;
}

.history-timeline {
  max-width: 32rem;
  margin: 0 auto;
}

.timeline-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-year {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 6rem;
  text-align: right;
  font-size: 1.125rem;
  font-weight: 700;
  color: black;
}

.timeline-content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.timeline-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: black;
  margin-bottom: 0.5rem;
}

.timeline-description {
  color: #313131;
  font-size: 0.875rem;
}

.team-section {
  padding: 6rem 0;
  background: #f9fafb;
}

.team-header {
  text-align: left;
  margin-bottom: 4rem;
}

.team-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 48rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .team-grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

.team-member {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
}

.team-member:hover {
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.member-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
}

.member-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.member-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: black;
  margin-bottom: 0.5rem;
}

.member-position {
  font-size: 0.875rem;
  color: #313131;
  margin-bottom: 1rem;
  font-weight: 500;
}

.member-description {
  font-size: 0.875rem;
  color: #313131;
  line-height: 1.6;
  text-align: left;
}

.contact-cta-section {
  padding: 6rem 0;
  background: white;
}

.cta-content {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: black;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1rem;
  color: #313131;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.cta-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-button.primary {
  background: #ff6b35;
  color: white;
  border: 2px solid #ff6b35;
}

.cta-button.primary:hover {
  background: white;
  color: #ff6b35;
}

.cta-button.secondary {
  background: transparent;
  color: #ff6b35;
  border: 2px solid #ff6b35;
}

.cta-button.secondary:hover {
  background: #ff6b35;
  color: white;
}

.footer {
  background: #111827;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
}

.footer-section .footer-logo {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-section .footer-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-section .footer-description .footer-company {
  text-decoration: underline;
}

.footer-section .footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.footer-section .footer-address {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-section .footer-address p {
  margin-bottom: 0.25rem;
}

.footer-section .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section .footer-links li {
  margin-bottom: 0.5rem;
}

.footer-section .footer-links li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.footer-section .footer-links li a:hover {
  color: white;
}

.footer-section .footer-social .social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 0.5rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.footer-section .footer-social .social-link:hover {
  color: white;
}

.footer-section .footer-social .social-link .social-icon {
  margin-right: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
}

.copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .philosophy-title {
    font-size: 1.25rem;
  }
  .cta-title {
    font-size: 1.5rem;
  }
  .timeline-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
  }
  .timeline-year {
    text-align: left;
    width: auto;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.fade-in {
  -webkit-animation: fadeIn 0.6s ease-out;
          animation: fadeIn 0.6s ease-out;
}

.text-center {
  text-align: center;
}

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

.text-right {
  text-align: right;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.hidden {
  display: none;
}

@media (min-width: 768px) {
  .md\\:block {
    display: block;
  }
  .md\\:flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .md\\:hidden {
    display: none;
  }
}
/*# sourceMappingURL=company.css.map */