main section {
  margin-bottom: 2rem;

  .container {
    padding: 0;
  }
}

section.projects-section-header .header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;

  h1 {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 700;
    color: #035c2f;
    text-align: center;
  }

  > p {
    color: #4b5563;
    font-size: 1.125rem;
    line-height: 1.5;
    text-align: center;
    font-weight: 600;
    margin: 0;
  }

  .intro-text {
    p {
      color: #4b5563;
      font-size: 0.875rem;
      line-height: 1.6;
      text-align: center;
      margin-bottom: 0.75rem;
    }
  }

  @media (min-width: 768px) {
    padding: 2rem 0;

    h1 {
      font-size: 2.5rem;
    }

    > p {
      font-size: 1.25rem;
    }

    .intro-text p {
      font-size: 1rem;
    }
  }

  @media (min-width: 1024px) {
    h1 {
      font-size: 3.75rem;
    }

    > p {
      font-size: 1.5rem;
      line-height: 1.75rem;
    }

    .intro-text p {
      font-size: 1.125rem;
    }
  }
}

section.projects-section-certifications {
  .container {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  }

  .section-title {
    margin-bottom: 2rem;

    h2 {
      position: relative;
      font-size: 1.75rem;
      line-height: 1.3;
      font-weight: 700;
      color: #035c2f;
      margin-bottom: 1rem;

      &:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -0.5rem;
        height: 0.25rem;
        width: 15%;
        border-radius: 9999px;
        background-color: #00944a;
        transition: width 0.3s ease;
      }
    }

    p {
      font-size: 0.875rem;
      line-height: 1.6;
      color: #374151;
      margin-bottom: 0.5rem;
    }
  }

  .certifications-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .certification-card {
    background-color: #f9fafb;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    &:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .certification-icon {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: linear-gradient(135deg, #008c45 0%, #035c2f 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;

      i {
        font-size: 2rem;
        color: #fff;
      }
    }

    h3 {
      font-size: 1.75rem;
      font-weight: 700;
      color: #035c2f;
      margin-bottom: 0.5rem;
    }

    h4 {
      font-size: 1rem;
      font-weight: 600;
      color: #008c45;
      margin-bottom: 1rem;
    }

    p {
      font-size: 0.875rem;
      line-height: 1.6;
      color: #374151;
      margin-bottom: 1rem;
    }

    .btn-more {
      display: inline-block;
      padding: 0.5rem 1.5rem;
      background-color: #008c45;
      color: #fff;
      border-radius: 50px;
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 600;
      transition: background-color 0.3s ease;

      &:hover {
        background-color: #035c2f;
        color: #fff;
        text-decoration: none;
      }
    }
  }

  @media (min-width: 768px) {
    .container {
      padding: 2rem;
      border-radius: 14px;
    }

    .section-title {
      h2 {
        font-size: 2rem;

        &:after {
          width: 12%;
        }
      }

      p {
        font-size: 1rem;
      }
    }

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

    .certification-card {
      padding: 2rem;

      h3 {
        font-size: 2rem;
      }

      h4 {
        font-size: 1.125rem;
      }

      p {
        font-size: 1rem;
      }

      .btn-more {
        font-size: 1rem;
      }
    }
  }

  @media (min-width: 1024px) {
    .container {
      padding: 3rem;
      border-radius: 16px;
    }

    .section-title {
      h2 {
        font-size: 2.25rem;
        line-height: 2.5rem;

        &:after {
          width: 8%;
        }
      }
    }
  }
}

section.projects-section-iso {
  .container {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  }

  .iso-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .iso-text {
    h2 {
      position: relative;
      font-size: 1.75rem;
      line-height: 1.3;
      font-weight: 700;
      color: #035c2f;
      margin-bottom: 1rem;

      &:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -0.5rem;
        height: 0.25rem;
        width: 15%;
        border-radius: 9999px;
        background-color: #00944a;
      }
    }

    .subtitle {
      font-size: 0.875rem;
      line-height: 1.6;
      color: #374151;
      font-weight: 600;
      margin-bottom: 1.5rem;
    }

    .iso-info {
      margin-bottom: 1.5rem;

      h3 {
        font-size: 1.125rem;
        font-weight: 600;
        color: #035c2f;
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;

        i {
          color: #008c45;
        }
      }

      p {
        font-size: 0.875rem;
        line-height: 1.6;
        color: #374151;
      }
    }
  }

  .iso-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #008c45 0%, #035c2f 100%);
    border-radius: 12px;
    padding: 3rem;

    i {
      font-size: 8rem;
      color: #fff;
      opacity: 0.9;
    }
  }

  @media (min-width: 768px) {
    .container {
      padding: 2rem;
      border-radius: 14px;
    }

    .iso-text {
      h2 {
        font-size: 2rem;

        &:after {
          width: 12%;
        }
      }

      .subtitle {
        font-size: 1rem;
      }

      .iso-info {
        h3 {
          font-size: 1.25rem;
        }

        p {
          font-size: 1rem;
        }
      }
    }
  }

  @media (min-width: 1024px) {
    .container {
      padding: 3rem;
      border-radius: 16px;
    }

    .iso-content {
      flex-direction: row;
      align-items: center;
      gap: 3rem;
    }

    .iso-text {
      flex: 1;

      h2 {
        font-size: 2.25rem;
        line-height: 2.5rem;

        &:after {
          width: 8%;
        }
      }
    }

    .iso-image {
      flex: 0 0 300px;
      height: 300px;
    }
  }
}

section.projects-section-infrastructure {
  .container {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  }

  .section-title {
    margin-bottom: 2rem;

    h2 {
      position: relative;
      font-size: 1.75rem;
      line-height: 1.3;
      font-weight: 700;
      color: #035c2f;
      margin-bottom: 1rem;

      &:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -0.5rem;
        height: 0.25rem;
        width: 15%;
        border-radius: 9999px;
        background-color: #00944a;
      }
    }
  }

  .infrastructure-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .infrastructure-text {
    h3 {
      font-size: 1.5rem;
      font-weight: 700;
      color: #035c2f;
      margin-bottom: 0.75rem;
    }

    .subtitle {
      font-size: 1rem;
      font-weight: 600;
      color: #008c45;
      margin-bottom: 1rem;
      font-style: italic;
    }

    p {
      font-size: 0.875rem;
      line-height: 1.6;
      color: #374151;
      margin-bottom: 0.75rem;
    }
  }

  .infrastructure-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

    img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }
  }

  @media (min-width: 768px) {
    .container {
      padding: 2rem;
      border-radius: 14px;
    }

    .section-title {
      h2 {
        font-size: 2rem;

        &:after {
          width: 12%;
        }
      }
    }

    .infrastructure-text {
      h3 {
        font-size: 1.75rem;
      }

      .subtitle {
        font-size: 1.125rem;
      }

      p {
        font-size: 1rem;
      }
    }
  }

  @media (min-width: 1024px) {
    .container {
      padding: 3rem;
      border-radius: 16px;
    }

    .section-title {
      h2 {
        font-size: 2.25rem;
        line-height: 2.5rem;

        &:after {
          width: 8%;
        }
      }
    }

    .infrastructure-content {
      flex-direction: row;
      gap: 3rem;
    }

    .infrastructure-text {
      flex: 1;
    }

    .infrastructure-image {
      flex: 0 0 400px;
      height: auto;

      img {
        height: 100%;
        object-fit: cover;
      }
    }
  }
}

section.projects-section-events {
  .container {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  }

  .section-title {
    margin-bottom: 2rem;
    text-align: center;

    h2 {
      position: relative;
      font-size: 1.75rem;
      line-height: 1.3;
      font-weight: 700;
      color: #035c2f;
      margin-bottom: 1rem;
      display: inline-block;

      &:after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -0.5rem;
        height: 0.25rem;
        width: 50%;
        border-radius: 9999px;
        background-color: #00944a;
      }
    }

    p {
      font-size: 0.875rem;
      line-height: 1.6;
      color: #374151;
      margin-bottom: 0.5rem;

      &:first-of-type {
        font-weight: 600;
        color: #035c2f;
        font-size: 1rem;
      }
    }
  }

  .events-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
  }

  .event-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 500px;
    width: 100%;

    img {
      width: 100%;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      transition: transform 0.3s ease;

      &:hover {
        transform: scale(1.02);
      }
    }

    .btn-event {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.75rem 2rem;
      background: linear-gradient(135deg, #e1306c 0%, #c13584 50%, #833ab4 100%);
      color: #fff;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

      i {
        font-size: 1.25rem;
      }

      &:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        color: #fff;
        text-decoration: none;
      }
    }
  }

  @media (min-width: 768px) {
    .container {
      padding: 2rem;
      border-radius: 14px;
    }

    .section-title {
      h2 {
        font-size: 2rem;
      }

      p {
        font-size: 1rem;

        &:first-of-type {
          font-size: 1.125rem;
        }
      }
    }

    .event-card {
      max-width: 600px;

      img {
        max-height: 600px;
        object-fit: contain;
      }

      .btn-event {
        font-size: 1.125rem;
        padding: 1rem 2.5rem;
      }
    }
  }

  @media (min-width: 1024px) {
    .container {
      padding: 3rem;
      border-radius: 16px;
    }

    .section-title {
      h2 {
        font-size: 2.25rem;
        line-height: 2.5rem;

        &:after {
          width: 40%;
        }
      }
    }
  }
}
