 <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
		p2{
			font-family: 'HK Grotesk';
		}
		p3{
			font-family: 'Philospher';
			 font-weight: bold;
		}
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }

        /* ===== BANNER / HEADER ===== */
        .banner {
            background: linear-gradient(135deg, #2d6a4f 0%, #40916c 100%);
            color: white;
            padding: 40px 20px;
            text-align: center;
        }
		.banner-title {
			font-size: 2em;
			margin-bottom: 10px;
			letter-spacing: 0px;
		}

		.banner-logo {
			height: 1.5em;           /* Logo height matches text size */
			width: auto;           /* Keep aspect ratio */
			vertical-align: middle;/* ✅ THIS aligns image with text */
			margin: 0 0px;         /* Small space around logo */
		}
        .banner h1 {
            font-size: 3em;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }

        .banner p {
            font-size: 1.2em;
            opacity: 0.9;
        }

        /* ===== MAIN CONTENT ===== */
        .container {
            max-width: 900px;
            margin: 40px auto;
            padding: 0 20px;
        }
  .intro-section-first {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            text-align: center;
			margin-bottom:20px;
        }
        .intro-section {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            text-align: center;
        }

        .intro-section h2 {
            color: #2d6a4f;
            font-size: 2em;
            margin-bottom: 20px;
        }

        .intro-section p {
            font-size: 1.1em;
            margin-bottom: 20px;
            color: #555;
        }

        .intro-image {
            margin: 30px 0;
        }

        .intro-image img {
            max-width: 100%;
            width: 250px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        }

        /* ===== FOOTER ===== */
        .footer {
            background-color: #1b4332;
            color: white;
            text-align: center;
            padding: 25px 20px;
            margin-top: 50px;
        }

        .footer p {
            opacity: 0.8;
            font-size: 0.95em;
        }

		.del-out {
		color: white !important;           /* Text = WHITE */
		font-weight: bold !important;                  /* Bold text */
		text-decoration-color: #40916c;       /* Strikethrough LINE = WHITE ✅ */
		text-decoration-thickness: 3px;     /* Make line thicker if needed */
	   }
			 .intro-section {
			text-align: center;
		}

	.intro-section {
    text-align: center;
}

/* ===== IMAGE CONTAINER — HIDES EVERYTHING THAT GOES OUTSIDE ===== */
.intro-image img {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.intro-image img:nth-child(1) {
  animation-delay: 0.2s;
}

.intro-image img:nth-child(2) {
  animation-delay: 0.4s;
}

.intro-image img:nth-child(3) {
  animation-delay: 0.6s;
}

.intro-image img:nth-child(4) {
  animation-delay: 0.8s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
	   
        /* ===== RESPONSIVE ===== */
        @media (max-width: 600px) {
            .banner h1 {
                font-size: 2em;
            }
            .intro-section {
                padding: 25px;
            }
        }
    </style>