
        h1 {
            text-align: center;
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 40px;
        }

        .tiles-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }

        .tile-box {
            width: 100%;
            max-width: 300px;
            background: #fff;
            border: 1px solid #e0e0e0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
            border-radius: 6px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .tile-box:hover {
            transform: translateY(-5px);
        }

        .tile-box img {
            width: 100%;
            height: auto;
            display: block;
        }

        .tile-content {
            padding: 15px;
            text-align: center;
        }

        .tile-content h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .tile-content p {
            font-size: 15px;
            color: #555;
            margin-bottom: 10px;
        }

        .tile-buttons {
            display: flex;
            justify-content: space-between;
            border-top: 1px solid #eee;
        }

        .tile-buttons a {
            display: block;
            width: 50%;
            text-align: center; 
            padding: 12px 0;
            font-size: 14px;
            text-decoration: none;
            color: #fff;
            background-color: #e97d50;
            transition: background-color 0.3s;
        }

        .tile-buttons a:hover {
            background-color: #dddddd;
        }

        .tile-buttons a:first-child {
            border-right: 1px solid #eee;
        }

        /* Responsive Queries */
        @media (max-width: 1024px) {
            .tile-box {
                max-width: 45%;
            }
        }

        @media (max-width: 768px) {
            .tile-box {
                max-width: 100%;
            }
        }
