   *{
            margin:0;
            padding:0;
            box-sizing:border-box;
            font-family:Arial,sans-serif;
        }

        body{
            background:#f4f7fb;
            color:#111827;
        }

        /* HERO SECTION */

        .hero{
            width:100%;
            min-height:55vh;
            background:
            linear-gradient(rgba(15,23,42,0.75),rgba(15,23,42,0.75)),
            url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1');
            background-size:cover;
            background-position:center;
            display:flex;
            justify-content:center;
            align-items:center;
            text-align:center;
            padding:20px;
        }

        .hero-content{
            max-width:800px;
            color:white;
        }

        .hero-content span{
            display:inline-block;
            background:rgba(255,255,255,0.15);
            padding:10px 22px;
            border-radius:40px;
            margin-bottom:20px;
            font-size:14px;
        }

        .hero-content h1{
            font-size:60px;
            margin-bottom:20px;
        }

        .hero-content p{
            line-height:1.8;
            font-size:18px;
            color:#e5e7eb;
        }

        /* NOTICE SECTION */

        .notice-section{
            width:100%;
            padding:100px 20px;
        }

        .container{
            max-width:1350px;
            margin:auto;
        }

        /* TITLE */

        .section-title{
            text-align:center;
            margin-bottom:70px;
        }

        .section-title h2{
            font-size:48px;
            margin-bottom:18px;
        }

        .section-title p{
            max-width:700px;
            margin:auto;
            color:#555;
            line-height:1.8;
        }

        /* NOTICE GRID */

        .notice-grid{
            display:grid;
            grid-template-columns:repeat(2,1fr);
            gap:30px;
        }

        /* NOTICE CARD */

        .notice-card{
            background:white;
            border-radius:25px;
            padding:30px;
            box-shadow:0 12px 35px rgba(0,0,0,0.08);
            transition:0.4s;
            border-left:6px solid #2563eb;
        }

        .notice-card:hover{
            transform:translateY(-8px);
        }

        /* TOP */

        .notice-top{
            display:flex;
            justify-content:space-between;
            align-items:center;
            gap:15px;
            margin-bottom:20px;
            flex-wrap:wrap;
        }

        .notice-date{
            background:#dbeafe;
            color:#2563eb;
            padding:8px 18px;
            border-radius:30px;
            font-size:13px;
            font-weight:600;
        }

        .notice-type{
            background:#eff6ff;
            color:#1d4ed8;
            padding:8px 18px;
            border-radius:30px;
            font-size:13px;
            font-weight:600;
        }

        /* CONTENT */

        .notice-card h3{
            font-size:28px;
            margin-bottom:18px;
            line-height:1.4;
        }

        .notice-card p{
            color:#555;
            line-height:1.9;
            margin-bottom:25px;
            font-size:15px;
        }

        /* BUTTON */

        .notice-btn{
            display:inline-block;
            background:#2563eb;
            color:white;
            text-decoration:none;
            padding:12px 24px;
            border-radius:10px;
            transition:0.3s;
            font-size:14px;
            font-weight:600;
        }

        .notice-btn:hover{
            background:#1d4ed8;
            transform:translateY(-3px);
        }

        /* IMPORTANT NOTICE */

        .important-notice{
            background:linear-gradient(135deg,#2563eb,#1d4ed8);
            color:white;
            border:none;
        }

        .important-notice .notice-date,
        .important-notice .notice-type{
            background:rgba(255,255,255,0.15);
            color:white;
        }

        .important-notice p{
            color:#e5e7eb;
        }

        .important-notice .notice-btn{
            background:white;
            color:#2563eb;
        }

        /* RESPONSIVE */

        @media(max-width:992px){

            .notice-grid{
                grid-template-columns:1fr;
            }

            .hero-content h1{
                font-size:44px;
            }
        }

        @media(max-width:768px){

            .notice-section{
                padding:70px 15px;
            }

            .hero-content h1{
                font-size:32px;
            }

            .hero-content p{
                font-size:15px;
            }

            .section-title h2{
                font-size:32px;
            }

            .notice-card{
                padding:25px 20px;
            }

            .notice-card h3{
                font-size:22px;
            }
        }