    body {
        margin: 0;
        font-family: Arial, sans-serif;
        background: linear-gradient(135deg, #1C0C3C, #603687 60%, #3e1b54);
        color: white;
    }

    /* HEADER */
    header {
        height: 6cm;
        width: 100%;
        background: #1C0C3C;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        padding: 1rem;
    }

    header img {
        height: 80%;
        max-height: 5cm;
        width: auto;
    }

    /* IMAGE GRID */
    .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
        padding: 1rem 2rem;
    }

    .tile {
        background: rgba(255,255,255,0.08);
        border-radius: 12px;
        backdrop-filter: blur(5px);
        padding: 1rem;
        text-align: center;
        transition: 0.3s;
        cursor: pointer;
    }

    .tile:hover {
        transform: scale(1.05);
        background: rgba(255,255,255,0.18);
    }

    .tile img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 0.5rem;
    }

    /* ENQUIRY BOX */
    .enquiry {
        background: rgba(0,0,0,0.35);
        padding: 2rem;
        margin: 2rem;
        border-radius: 12px;
        max-width: 600px;
    }

    input, textarea {
        width: 100%;
        padding: 0.7rem;
        margin-bottom: 1rem;
        border-radius: 6px;
        border: none;
    }

    button {
        background: #7A38B4;
        border: none;
        color: white;
        padding: 0.8rem 1.5rem;
        border-radius: 6px;
        cursor: pointer;
        font-size: 1rem;
    }

    button:hover {
        background: #9e54e0;
    }
    a { text-decoration: none; }