
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            background: #f4f6f9;
            color: #222;
            line-height: 1.6;
        }

        /* NAVBAR */
        header {
            background: #ffffff;
            padding: 20px 8%;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        nav h2 {
            font-size: 20px;
            font-weight: bold;
        }

        nav ul {
            display: flex;
            gap: 20px;
            list-style: none;
        }

        nav ul li a {
            text-decoration: none;
            color: #333;
            font-size: 14px;
        }

        /* HERO */
        .hero {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 80px 8%;
            background: #fff;
            gap: 40px;
        }

        .hero-text {
            flex: 1;
        }

        .hero-text h1 {
            font-size: 40px;
            margin-bottom: 10px;
        }

        .hero-text h3 {
            color: #666;
            margin-bottom: 20px;
        }

        .hero-text p {
            margin-bottom: 20px;
            color: #444;
        }

        .hero-text a {
            display: inline-block;
            padding: 10px 18px;
            margin-right: 10px;
            border-radius: 6px;
            text-decoration: none;
            font-size: 14px;
        }

        .hero-text a:first-of-type {
            background: #000;
            color: #fff;
        }

        .hero-text a:last-of-type {
            border: 1px solid #000;
            color: #000;
        }

        .hero-image img {
            width: 300px;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        /* SECTIONS */
        section {
            padding: 60px 8%;
            background: #fff;
            margin-top: 20px;
        }

        section h2 {
            margin-bottom: 20px;
            font-size: 24px;
        }

        /* ABOUT */
        .about p {
            color: #444;
            max-width: 800px;
        }

        /* HIGHLIGHTS */
        .highlights div {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .highlights div div {
            /* background: #f8f9fb; */
            padding: 20px;
            border-radius: 10px;
        }

        .highlights h3 {
            margin-bottom: 10px;
        }

        /* GALLERY */
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
        }

        .grid img {
            width: 100%;
            border-radius: 10px;
        }

        /* VALUES */
        .values ul {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 10px;
            list-style: none;
        }

        .values li {
            background: #f8f9fb;
            padding: 12px;
            border-radius: 8px;
            text-align: center;
        }

        /* CONTACT */
        .contact p {
            margin-bottom: 8px;
        }

        /* FOOTER */
        footer {
            text-align: center;
            padding: 30px;
            background: #fff;
            margin-top: 20px;
            font-size: 14px;
            color: #666;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {

            .hero {
                flex-direction: column;
                text-align: center;
            }

            .hero-image img {
                width: 200px;
            }

            nav ul {
                display: none;
            }
        }
.featured {
    margin: 40px 8%;
    padding: 50px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
}

.featured h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #222;
}

.featured p {
    max-width: 700px;
    margin: 0 auto 25px;
    color: #444;
    line-height: 1.7;
    font-size: 15px;
}

.featured img {
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    transition: transform 0.3s ease;
}

.featured img:hover {
    transform: scale(1.02);
}

<style>

.quote {
    margin: 40px 8%;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
}

/* Decorative quote marks */
.quote::before {
    content: "“";
    font-size: 80px;
    color: rgba(0,0,0,0.08);
    position: absolute;
    top: 10px;
    left: 20px;
}

.quote::after {
    content: "”";
    font-size: 80px;
    color: rgba(0,0,0,0.08);
    position: absolute;
    bottom: -10px;
    right: 20px;
}

.quote p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
}

</style>
