        /* Hero Section */
        .hero {
          background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
          padding: 80px 0;
          text-align: center;
          border-bottom: 4px solid #1fc602;
        }

        .hero-title {
          /* max-width: 500px; */
          font-size: 2.2rem;
          color: #1a1a1a;
          margin-bottom: 20px;
          line-height: 1.3;
          text-align: center;
        }

        .highlight {
          color: #1fc602;
          font-weight: 600;
        }

        .images--wrapper {
          display: flex;
          justify-content: center;
          align-items: center;
          margin-top: 50px;
        }

        .images--wrapper img {
          max-width: 600px;
          width: 100%;
          /* height: 300px; */
          margin: 0 20px;
          border-radius: 10px;
        }

        .journal-link {
          display: inline-block;
          background-color: #1fc602;
          color: white;
          padding: 10px 20px;
          text-decoration: none;
          border-radius: 8px;
          font-weight: 600;
          margin-top: 15px;
          transition: background-color 0.3s;
        }

        .journal-link:hover {
          background-color: #1aa802;
        }

        /* Content Section */
        .content-section {
          padding: 60px 0;
        }

        .article-content {
          max-width: 900px;
          margin: 0 auto 40px;
          background: white;
          padding: 30px;
          border-radius: 12px;
          box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
        }

        .important-points {
          max-width: 900px;
          margin: 0 auto 40px;
          background: white;
          padding: 30px;
          border-radius: 12px;
          box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
        }

        .important-points h2 {
          color: #1fc602;
          margin-bottom: 25px;
          font-size: 1.5rem;
          text-align: center;
        }

        .point-item {
          background-color: #f8f9fa;
          padding: 20px;
          border-radius: 8px;
          margin: 15px 0;
          border-left: 4px solid #1fc602;
        }

        .point-title {
          color: #1fc602;
          font-weight: 600;
          margin-bottom: 10px;
        }

        .achievement {
          background-color: #e8f5e8;
          border-left: 4px solid #1fc602;
          padding: 25px;
          border-radius: 0 8px 8px 0;
          margin: 30px 0;
          text-align: center;
        }

        .call-to-action {
          background-color: #fff3cd;
          border-left: 4px solid #ffc107;
          padding: 25px;
          border-radius: 0 8px 8px 0;
          margin: 30px 0;
          text-align: center;
        }

        .cta-button {
          display: inline-block;
          background-color: #1fc602;
          color: white;
          padding: 15px 35px;
          text-decoration: none;
          border-radius: 50px;
          font-weight: 600;
          font-size: 1.1rem;
          margin-top: 15px;
          transition: all 0.3s ease;
          box-shadow: 0 4px 15px rgba(31, 198, 2, 0.3);
          border: none;
          cursor: pointer;
        }

        .cta-button:hover {
          background-color: #1aa802;
          transform: translateY(-2px);
          box-shadow: 0 6px 20px rgba(31, 198, 2, 0.4);
        }

        @media screen and (max-width: 768px) {
          .hero-title {
            font-size: 1.5rem;
          }

          .important-points {
            padding: 0;
          }
        }