
   /*{
        margin:0;
        padding:0;
        box-sizing:border-box;
    }

    body{
        font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background:#f4f6f9;
        color:#333;
        line-height:1.6;
    }*/

    main{
        max-width:1000px;
        margin:40px auto;
        padding:0 20px;
    }

    .section{
        margin-bottom:50px;
    }

    .section h2{
        font-size:32px;
        color:#992c00;;
        margin-bottom:25px;
        border-left:5px solid #992c00;;
        padding-left:15px;
         font-family: "Poppins", sans-serif;
    }

    .item{
        background:#fff;
        border-radius:12px;
        overflow:hidden;
        box-shadow:0 5px 15px rgba(0,0,0,.08);
        margin-bottom:25px;
        transition:.3s;
    }

    .item:hover{
        transform:translateY(-5px);
        box-shadow:0 10px 25px rgba(0,0,0,.12);
    }

    .news-image{
        width:20%;
        height:20%;
        object-fit:cover;
    }

    .content{
        padding:20px;
    }

    .content h3{
        margin-bottom:10px;
        color:#222;
         font-family: "Poppins", sans-serif;
    }

    .date{
        color:#6c757d;
        font-size:14px;
        margin-bottom:10px;
    }

    .btn{
        display:inline-block;
        background:#0d6efd;
        color:#fff;
        text-decoration:none;
        padding:10px 20px;
        border-radius:6px;
        margin-top:10px;
        transition:.3s;
    }

    .btn:hover{
        background:#0b5ed7;
    }

    .event-card{
        display:flex;
        gap:20px;
        align-items:center;
    }

    .event-card img{
        width:280px;
        height:180px;
        object-fit:cover;
    }

    .event-info{
        padding:20px;
    }

    .event-info h3{
        margin-bottom:10px;
        color:#222;
         font-family: "Poppins", sans-serif;
    }

    .event-info p{
        margin-bottom:8px;
         font-family: "Poppins", sans-serif;
    }

    /*@media(max-width:768px){

        .event-card{
            flex-direction:column;
        }

        .event-card img{
            width:100%;
            height:220px;
        }

        .section h2{
            font-size:26px;
        }
    }*/
