    *{
            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:70vh;
            background:
            linear-gradient(rgba(15,23,42,0.78),rgba(15,23,42,0.78)),
            url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f');
            background-size:cover;
            background-position:center;
            display:flex;
            justify-content:center;
            align-items:center;
            text-align:center;
            padding:20px;
        }

        .hero-content{
            max-width:850px;
            color:white;
        }

        .hero-content span{
            display:inline-block;
            background:rgba(255,255,255,0.15);
            padding:10px 22px;
            border-radius:40px;
            margin-bottom:25px;
            font-size:14px;
        }

        .hero-content h1{
            font-size:60px;
            margin-bottom:25px;
        }

        .hero-content p{
            font-size:18px;
            line-height:1.9;
            color:#e5e7eb;
        }

        /* SECTION */

        .section{
            width:100%;
            padding:100px 20px;
        }

        .container{
            max-width:1300px;
            margin:auto;
        }

        /* TITLE */

        .section-title{
            text-align:center;
            margin-bottom:70px;
        }

        .section-title h2{
            font-size:46px;
            margin-bottom:20px;
        }

        .section-title p{
            max-width:750px;
            margin:auto;
            line-height:1.8;
            color:#555;
        }

        /* ABOUT */

        .about-grid{
            display:grid;
            grid-template-columns:1fr 1fr;
            gap:50px;
            align-items:center;
        }

        .about-image img{
            width:100%;
            border-radius:30px;
            box-shadow:0 15px 40px rgba(0,0,0,0.1);
        }

        .about-content h3{
            font-size:38px;
            margin-bottom:25px;
        }

        .about-content p{
            color:#555;
            line-height:1.9;
            margin-bottom:20px;
        }

        .highlight-box{
            background:#eff6ff;
            padding:20px;
            border-left:5px solid #2563eb;
            border-radius:12px;
            margin-top:25px;
        }

        .highlight-box p{
            margin:0;
            color:#1e3a8a;
            font-weight:600;
        }

        /* CARDS */

        .card-grid{
            display:grid;
            grid-template-columns:repeat(3,1fr);
            gap:30px;
        }

        .card{
            background:white;
            padding:35px 28px;
            border-radius:28px;
            box-shadow:0 10px 35px rgba(0,0,0,0.08);
            transition:0.4s;
        }

        .card:hover{
            transform:translateY(-10px);
        }

        .card-icon{
            width:80px;
            height:80px;
            background:#2563eb;
            color:white;
            display:flex;
            align-items:center;
            justify-content:center;
            border-radius:22px;
            font-size:38px;
            margin-bottom:25px;
        }

        .card h3{
            font-size:26px;
            margin-bottom:18px;
        }

        .card p{
            color:#555;
            line-height:1.8;
        }

        /* COMMITTEE */

        .committee-section{
            background:white;
        }

        .committee-grid{
            display:grid;
            grid-template-columns:repeat(2,1fr);
            gap:30px;
        }

        .committee-card{
            background:#f8fafc;
            padding:30px;
            border-radius:25px;
            border-left:5px solid #2563eb;
        }

        .committee-card h3{
            font-size:28px;
            margin-bottom:15px;
        }

        .committee-card p{
            color:#555;
            line-height:1.8;
            margin-bottom:10px;
        }

        .committee-card span{
            color:#2563eb;
            font-weight:600;
        }

        /* EMERGENCY BOX */

        .emergency-box{
            background:linear-gradient(135deg,#2563eb,#1d4ed8);
            padding:45px;
            border-radius:30px;
            color:white;
            text-align:center;
        }

        .emergency-box h2{
            font-size:42px;
            margin-bottom:20px;
        }

        .emergency-box p{
            line-height:1.9;
            max-width:800px;
            margin:auto;
            margin-bottom:30px;
            color:#e5e7eb;
        }

        .contact-btn{
            display:inline-block;
            background:white;
            color:#2563eb;
            text-decoration:none;
            padding:15px 30px;
            border-radius:12px;
            font-weight:700;
            transition:0.3s;
        }

        .contact-btn:hover{
            transform:translateY(-4px);
        }

        /* RESPONSIVE */

        @media(max-width:1100px){

            .card-grid{
                grid-template-columns:repeat(2,1fr);
            }
        }

        @media(max-width:900px){

            .about-grid,
            .committee-grid{
                grid-template-columns:1fr;
            }

            .hero-content h1{
                font-size:44px;
            }
        }

        @media(max-width:768px){

            .card-grid{
                grid-template-columns:1fr;
            }

            .hero-content h1{
                font-size:32px;
            }

            .hero-content p{
                font-size:15px;
            }

            .section-title h2,
            .about-content h3,
            .emergency-box h2{
                font-size:30px;
            }

            .section{
                padding:70px 15px;
            }

            .emergency-box{
                padding:35px 20px;
            }
        }