       .ody {
            margin: 0;
            background: #f2f4f7;
            font-family: "Segoe UI", Arial, sans-serif;
        }

        .div {
            margin: 30px auto;
            max-width: 900px;
            padding: 40px 50px;
            background: #fff;
            border-radius: 14px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
            text-align: center;
        }


        .div h1 {
            font-size: 34px;
            color: #2c3e50;
            margin-bottom: 10px;
        }


        .div h3 {
            font-size: 18px;
            color: #555;
            font-weight: 400;
            margin-bottom: 25px;
        }


        .div strong {
            display: block;
            font-size: 20px;
            color: #8e44ad;
            margin-bottom: 15px;
        }


        .div p:first-of-type {
            font-weight: bold;
            font-size: 18px;
            color: #34495e;
            margin-bottom: 20px;
        }


        .div p {
            font-size: 16px;
            color: #333;
            line-height: 1.9;
            margin-bottom: 18px;
        }

          .ody {
            margin: 0;
            background: linear-gradient(180deg, #f4f6f8, #e9edf1);
            font-family: "Segoe UI", Arial, sans-serif;
        }


        .div1 {
            margin: 40px auto;
            max-width: 920px;
            padding: 50px 60px;
            background: #ffffff;
            border-radius: 18px;
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
            text-align: center;
        }


        .div1 p {
            font-size: 16.5px;
            line-height: 2;
            color: #2f2f2f;
            margin-bottom: 28px;
        }


        .div1 strong {
            display: block;
            font-size: 21px;
            color: #7a3db8;
            margin: 40px 0 25px;
            letter-spacing: 0.5px;
            position: relative;
        }


        .div1 strong::after {
            content: "";
            display: block;
            width: 80px;
            height: 3px;
            background: linear-gradient(to right, #7a3db8, #c39bd3);
            margin: 12px auto 0;
            border-radius: 5px;
        }

        @media (max-width: 768px) {
            .div1 {
                padding: 30px 22px;
            }

            .div1 p {
                font-size: 15.5px;
            }

            .div1 strong {
                font-size: 19px;
            }
        }
        div {
    text-align: center; 
    margin: 20px;
}



img {
    width: 80%;
    max-width: 400px;
    height: auto;
    margin-top: 10px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.2); 
    cursor: pointer; 
}




.text {
    max-width: 800px;      
    margin: 30px auto;    
    padding: 20px;
    background-color: #f9f9f9; 
    border-radius: 12px;   
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
    line-height: 1.7;      
    font-family: 'Arial', sans-serif;
    color: #333;
}


.text h3 {
    color: #2c3e50;
    font-size: 1.8em;
    margin-bottom: 15px;
    text-align: center; 
}


.text img {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.text img:hover {
    transform: scale(1.05); 
}


.text p {
    margin-bottom: 15px;
    text-align: justify; 
}

.text strong {
    color: black
}



.d1 {
    text-align: left; 
    margin: 20px;    
    padding: 10px;    
    font-family: Arial, sans-serif;
}

.d1 h4 {
    color: #2c3e50;   
    font-size: 1.5em; /
}

.center-box {
    display: block !important;
    width: 100%;
    text-align: center !important;
    margin: 0 auto !important;
}



            .ul {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 800px;
    font-family: "Segoe UI", Arial, sans-serif;
}

.ul li {
    background: #f8f9fb;
    margin-bottom: 10px;
    padding: 14px 16px 14px 44px;
    border-radius: 10px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.ul li::before {
    content: "✔";
    position: absolute;
    left: 16px;
    top: 14px;
    color: #2ecc71;
    font-weight: bold;
}

.ul li:hover {
    background: #eef3ff;
    transform: translateX(6px);
}