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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #fff;
            color: #333;
            line-height: 1.6;
        }

        /* Header */
        

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #1a472a 0%, #2d7a3e 100%);
            color: white;
            padding: 80px 20px;
            text-align: center;
            min-height: 200px;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            max-height: 120px;
        }

        .hero-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .hero-content p {
            font-size: 20px;
            opacity: 0.95;
            line-height: 1.8;
        }

        /* Main Content */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .section {
            margin-bottom: 80px;
        }

        .section-title {
            font-size: 36px;
            color: #1a472a;
            margin-bottom: 30px;
            text-align: center;
            font-weight: 700;
        }

        .section-subtitle {
            font-size: 18px;
            color: #666;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
            line-height: 1.8;
        }

        /* Story Section */
        .story-content {
            background: #f8f9fa;
            padding: 50px;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .story-content p {
            font-size: 17px;
            color: #555;
            margin-bottom: 20px;
            line-height: 1.9;
        }

        .story-content p:last-child {
            margin-bottom: 0;
        }

        /* Stats Section */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .stat-card {
            background: white;
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .stat-card:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 48px;
            font-weight: 700;
            color: #2d7a3e;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 16px;
            color: #666;
            font-weight: 500;
        }

        /* Values Section */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .value-card {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            border-left: 5px solid #2d7a3e;
        }

        .value-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .value-title {
            font-size: 22px;
            color: #1a472a;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .value-description {
            font-size: 16px;
            color: #666;
            line-height: 1.7;
        }

        /* Mission Vision Section */
        .mission-vision-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .mission-card, .vision-card {
            background: linear-gradient(135deg, #1a472a 0%, #2d7a3e 100%);
            color: white;
            padding: 50px;
            border-radius: 15px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }

        .mission-card h3, .vision-card h3 {
            font-size: 28px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .mission-card p, .vision-card p {
            font-size: 17px;
            line-height: 1.8;
            opacity: 0.95;
        }

        /* Products Section */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .product-category {
            background: white;
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }

        .product-category:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }

        .product-icon {
            font-size: 64px;
            margin-bottom: 20px;
        }

        .product-category h3 {
            font-size: 20px;
            color: #1a472a;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .product-category p {
            font-size: 15px;
            color: #666;
            line-height: 1.6;
        }

        /* Team Section */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .team-member {
            background: white;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }

        .team-photo {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(135deg, #2d7a3e, #1a472a);
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            color: white;
        }

        .team-name {
            font-size: 20px;
            color: #1a472a;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .team-role {
            font-size: 14px;
            color: #2d7a3e;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .team-description {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #1a472a 0%, #2d7a3e 100%);
            color: white;
            padding: 80px 20px;
            text-align: center;
            margin-top: 60px;
            border-radius: 15px;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 40px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .cta-content p {
            font-size: 18px;
            margin-bottom: 35px;
            opacity: 0.95;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 15px 40px;
            font-size: 16px;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: white;
            color: #1a472a;
        }

        .btn-primary:hover {
            background: #f0f0f0;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-2px);
        }

/* Section background */
.trykisan-challenges {
  background-color: #f6faf5;
  padding: 80px 20px;
}

/* Content container */
.tk-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Main heading */
.tk-heading {
  font-size: 34px;
  color: #2c5f2d;
  margin-bottom: 35px;
  font-weight: 700;
}

/* Sub headings */
.tk-subheading {
  font-size: 25px;
  color: #3a7d44;
  margin-top: 55px;
  margin-bottom: 25px;
  font-weight: 600;
}

/* Paragraph text */
.tk-text {
  font-size: 17px;
  line-height: 1.9;
  color: #333;
  margin: 0;
}

/* Light paragraph box */
.tk-box {
  background-color: #ffffff;
  padding: 22px 26px;
  margin-bottom: 22px;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

/* Highlight solution box */
.tk-highlight {
  background-color: #eef7f0;
  border-left: 5px solid #2c5f2d;
}

/* Final bold box */
.tk-bold-box {
  background-color: #f0f7f1;
}

/* Emphasis text */
.tk-text strong {
  color: #2c5f2d;
  font-weight: 600;
}

/* Bold ending */
.tk-bold {
  font-weight: 600;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .tk-heading {
    font-size: 28px;
  }

  .tk-subheading {
    font-size: 22px;
  }

  .tk-box {
    padding: 18px 20px;
  }

  .tk-text {
    font-size: 16px;
  }
}

        /* Footer */
        .footer {
            background: #1a472a;
            color: white;
            padding: 60px 20px 20px;
            margin-top: 80px;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            margin-bottom: 20px;
            font-size: 20px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section a {
            color: #ddd;
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s;
        }

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

        .footer-section p {
            color: #ddd;
            line-height: 1.8;
            font-size: 15px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: background 0.3s;
        }

        .social-links a:hover {
            background: rgba(255,255,255,0.2);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #2d7a3e;
            font-size: 14px;
            color: #aaa;
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 32px;
            }

            .hero-content p {
                font-size: 16px;
            }

            .section-title {
                font-size: 28px;
            }

            .mission-vision-grid {
                grid-template-columns: 1fr;
            }

            .nav-menu {
                display: none;
            }
        }