        .volunteer-section {
            position: relative;
            padding: 70px 0;
            background: #f5fbf7;
            overflow: hidden;
            font-family: Arial, sans-serif;
        }

        .volunteer-section::before {
            content: "";
            position: absolute;
            width: 300px;
            height: 300px;
            border: 45px solid rgba(28, 130, 76, 0.06);
            border-radius: 50%;
            top: -150px;
            right: -80px;
        }

        .volunteer-section::after {
            content: "";
            position: absolute;
            width: 220px;
            height: 220px;
            background: rgba(28, 130, 76, 0.05);
            border-radius: 50%;
            bottom: -120px;
            left: -80px;
        }

        .volunteer-wrap {
            position: relative;
            z-index: 2;
            background: #ffffff;
            border: 1px solid #d9eadf;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 12px 35px rgba(17, 88, 48, 0.08);
        }

        .volunteer-image {
            position: relative;
            height: 100%;
            min-height: 430px;
        }

        .volunteer-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            inset: 0;
        }

        .volunteer-image::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(
                180deg,
                rgba(12, 91, 48, 0.02),
                rgba(12, 91, 48, 0.22)
            );
        }

        .volunteer-badge {
            position: absolute;
            left: 25px;
            bottom: 25px;
            z-index: 3;
            background: #ffffff;
            color: #13723e;
            padding: 12px 18px;
            border-left: 4px solid #168447;
            border-radius: 5px;
            font-size: 14px;
            font-weight: 700;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }

        .volunteer-content {
            padding: 55px;
        }

        .volunteer-small-title {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            margin-bottom: 14px;
            color: #168447;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.4px;
        }

        .volunteer-small-title span {
            width: 35px;
            height: 2px;
            background: #168447;
            display: inline-block;
        }

        .volunteer-content h2 {
            color: #164c2d;
            font-size: 42px;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 20px;
        }

        .volunteer-content h2 strong {
            color: #168447;
        }

        .volunteer-content p {
            color: #5e6f65;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 22px;
        }

        .volunteer-points {
            margin-bottom: 28px;
        }

        .volunteer-point {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #355743;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .volunteer-point i {
            width: 29px;
            height: 29px;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            background: #e4f5e9;
            color: #168447;
            border-radius: 50%;
            font-size: 13px;
        }

        .contact-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 13px 25px;
            background: #168447;
            border: 2px solid #168447;
            color: #ffffff;
            text-decoration: none;
            border-radius: 5px;
            font-size: 15px;
            font-weight: 700;
            transition: 0.3s ease;
        }

        .contact-btn:hover {
            background: #0d6836;
            border-color: #0d6836;
            color: #ffffff;
            transform: translateY(-2px);
        }

        @media (max-width: 991.98px) {
            .volunteer-section {
                padding: 50px 0;
            }

            .volunteer-image {
                min-height: 380px;
            }

            .volunteer-content {
                padding: 40px;
            }

            .volunteer-content h2 {
                font-size: 36px;
            }
        }

        @media (max-width: 767.98px) {
            .volunteer-section {
                padding: 35px 12px;
            }

            .volunteer-image {
                min-height: 300px;
            }

            .volunteer-content {
                padding: 30px 22px;
            }

            .volunteer-content h2 {
                font-size: 29px;
            }

            .volunteer-content p {
                font-size: 15px;
            }

            .volunteer-badge {
                left: 15px;
                bottom: 15px;
            }
        }