:root {
    --primary-color: #750000;
    --secondary-color: #006300;
    --accent-color: #ff0000;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --transition: all 0.3s ease;
  }


  .about-container {
    margin: 0 auto;
    padding: 40px 20px;
  }

  .hero-section {
    background: linear-gradient(rgba(90, 36, 36, 0.308), rgba(65, 9, 9, 0.301)), url('../images/about.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 50px 20px;
    text-align: center;
    margin-bottom: 60px;
  }

  .hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease;
  }

  .section {
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
  }

  .secRelations{
    background: rgb(233, 233, 233);
  }
  .section.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .section-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .section-subtitle {
    color: var(--secondary-color);
    font-size: 1.2rem;
  }

  .divider {
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 20px auto;
  }

  .content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }

  .info-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 30px;
    transition: var(--transition);
  }

  .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
  }

  .card-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
  }

  .card-content {
    color: var(--text-color);
    line-height: 1.8;
  }

  .highlight-box {
    background: var(--light-bg);
    border-left: 4px solid var(--accent-color);
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
  }

  .stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
  }

  .stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }

  .stat-number {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 10px;
  }

  .stat-label {
    color: var(--text-color);
    font-size: 1.1rem;
  }

  .image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
  }

  .gallery-item {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }

  .gallery-item:hover img {
    transform: scale(1.1);
  }

  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 768px) {
    .hero-title {
      font-size: 2rem;
    }
    
    .section-title {
      font-size: 2rem;
    }
    
    .content-grid {
      grid-template-columns: 1fr;
    }
  }