 /* Kompakt About Sayfası Stilleri */

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Hero */
  .hero-section {
    background: var(--primary-gradient);
    padding: 60px 0;
    text-align: center;
    color: white;
  }

  .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
  }

  .hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  .hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
  }

  /* Ana İçerik */
  .main-content {
    padding: 60px 0;
    background: #f8fafc;
  }

  .section-tag {
    display: inline-block;
    background: var(--primary-text-color);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }

  /* Hikaye Bölümü */
  .story-section {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .story-text h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 1rem;
  }

  .story-text p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .story-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }

  /* Misyon Vizyon */
  .mv-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
  }

  .mv-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
  }

  .mv-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
  }

  .mv-item.vision::before {
    background: linear-gradient(90deg, #f093fb, #f5576c);
  }

  .mv-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .mv-item h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 0.8rem;
  }

  .mv-item p {
    color: #64748b;
    line-height: 1.5;
  }

  /* Değerler ve İstatistikler */
  .values-stats-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }

  .values-grid,
  .stats-grid {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .value-compact,
  .stat-compact {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f1f5f9;
  }

  .value-compact:last-child,
  .stat-compact:last-child {
    border-bottom: none;
  }

  .value-icon {
    font-size: 1.8rem;
    width: 40px;
    text-align: center;
  }

  .value-compact h4 {
    font-size: 1rem;
    color: #1e293b;
    margin-bottom: 0.2rem;
  }

  .value-compact p {
    font-size: 0.9rem;
    color: #64748b;
  }

  .stat-compact {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-text-color);
    line-height: 1;
  }

  .stat-label {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 0.3rem;
  }

  /* Teknolojiler */
  .tech-section {
    background: white;
    padding: 10px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 10px;
  }

  .tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }

  .tech-category {
    padding: 20px;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    transition: all 0.3s ease;
  }

  .tech-category:hover {
    border-color: var(--primary-text-color);
    transform: translateY(-2px);
  }

  .tech-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
  }

  .tech-icon {
    font-size: 1.5rem;
  }

  .tech-header h4 {
    font-size: 1.1rem;
    color: #1e293b;
  }

  .tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .tech-tags span {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
  }

  /* Güvenlik ve Referanslar */
  .security-ref-section {
    margin-bottom: 50px;
  }

  .security-grid {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .security-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 20px;
  }

  .security-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    transition: all 0.3s ease;
  }

  .security-item:hover {
    border-color: var(--primary-text-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  /* CTA */
  .cta-section {
    background: var(--secondary-gradient);
    padding: 60px 0;
    text-align: center;
    color: white;
  }

  .cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
  }

  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .btn-primary {
    background: var(--primary-text-color);
    color: white;
  }

  .btn-primary:hover {
    background: #5a67d8;
    transform: translateY(-2px);
  }

  .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
  }

  .btn-secondary:hover {
    background: white;
    color: #1e293b;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .story-section {
      grid-template-columns: 1fr;
      gap: 25px;
    }

    .mv-section {
      grid-template-columns: 1fr;
    }

    .values-stats-section,
    .security-ref-section {
      grid-template-columns: 1fr;
      gap: 25px;
    }

    .tech-categories {
      grid-template-columns: 1fr;
    }

    .hero-content h1 {
      font-size: 2.2rem;
    }

    .cta-buttons {
      flex-direction: column;
      align-items: center;
    }
  }
  .tech-section {
    padding: 10px 0;
    background: #f8fafc;
  }

  .section-tag {
    display: inline-block;
    background: var(--primary-text-color);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
    display: block;
    width: fit-content;
    margin: 0 auto 3rem auto;
  }

  .tech-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
  }
  .tech-logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    padding: 20px 0;
  }

  .tech-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 20px 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 110px;
    flex: 0 0 auto;
  }

  .tech-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  }

  .tech-logo {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
  }

  .tech-logo-item:hover .tech-logo {
    transform: scale(1.05);
  }

  .tech-logo-item span {
    font-weight: 600;
    font-size: 0.85rem;
    color: #374151;
    text-align: center;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .tech-logos-grid {
      gap: 20px;
      padding: 20px 0;
    }

    .tech-logo-item {
      min-width: 110px;
      padding: 20px 15px;
    }

    .tech-logo {
      width: 40px;
      height: 40px;
    }

    .tech-logo-item span {
      font-size: 0.8rem;
    }
  }