* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: #050505;
            color: white;
        }

        .lab-hero {
            padding-top: 170px;
            padding-bottom: 90px;
            min-height: 100vh;
            background:
                linear-gradient(rgba(0, 0, 0, 0.75),
                    rgba(0, 0, 0, 0.85)),
                radial-gradient(circle at top left,
                    rgba(255, 0, 0, 0.15),
                    transparent 40%),
                #050505;
        }

        .lab-container {
            width: 90%;
            max-width: 1400px;
            margin: auto;
        }


        .lab-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .lab-title h1 {
            font-size: 78px;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 20px;
            letter-spacing: 3px;
        }

        .lab-title p {
            font-size: 22px;
            color: #bcbcbc;
        }


        .lab-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 40px;
        }

        .lab-card {
            background: #0d0d0d;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 40px;
            transition: 0.35s;
        }

        .lab-card:hover {
            transform: translateY(-8px);
            border-color: #ff1010;
            box-shadow: 0 0 30px rgba(255, 0, 0, 0.18);
        }

        .lab-card h2 {
            font-size: 46px;
            margin-bottom: 25px;
            font-weight: 800;
        }

        .lab-list {
            list-style: none;
            margin-bottom: 35px;
        }

        .lab-list li {
            margin-bottom: 18px;
        }

        .lab-list a {
            color: #d0d0d0;
            text-decoration: none;
            font-size: 28px;
            transition: 0.3s;
        }

        .lab-list a:hover {
            color: #ff3030;
            padding-left: 8px;
        }

        .lab-btn {
            display: inline-block;
            width: 100%;
            text-align: center;
            padding: 22px;
            border-radius: 18px;
            background: #ff1010;
            color: white;
            text-decoration: none;
            font-size: 26px;
            font-weight: 700;
            transition: 0.3s;
        }

        .lab-btn:hover {
            background: #d70000;
        }


        @media(max-width: 1208px) {
            .lab-title h1 {
                font-size: 55px;
            }

            .lab-card h2 {
                font-size: 36px;
            }

            .lab-list a {
                font-size: 22px;
            }

            .lab-btn {
                font-size: 22px;
            }
        }

        @media(max-width: 1208px) {

            .lab-hero {
                padding-top: 130px;
            }

            .lab-title h1 {
                font-size: 42px;
            }

            .lab-title p {
                font-size: 18px;
            }

            .lab-grid {
                grid-template-columns: 1fr;
            }

            .lab-card {
                padding: 28px;
            }

            .lab-card h2 {
                font-size: 30px;
            }

            .lab-list a {
                font-size: 18px;
            }

            .lab-btn {
                font-size: 18px;
            }
        }