        /* CSS Variables for colors */
        :root {
            --primary-bg-color: #d3dbf2;
            --secondary-bg-color: #26262b;
            --accent-color: #4184c7;
            --light-text-color: #ffffff;
            --subtle-text-color: #a19e9f;
            --border-color: #ffffff;
        }

        /* Import fonts */
        @import url("https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300|Ubuntu");


        .webpage {
            /* width: 90%; */
            /* max-width: 900px; */
            height: 90vh;
            max-height: 600px;
            position: relative;
            background: linear-gradient(rgba(38, 38, 43, 0.85), rgba(38, 38, 43, 0.95)), url("https://images.pexels.com/photos/159306/construction-site-build-construction-work-159306.jpeg?h=420&auto=compress") no-repeat center center;
            background-size: cover;
            box-shadow: 10px 10px 18px 0px rgba(0, 0, 0, 0.75);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding: 5%;
            box-sizing: border-box;
            overflow: hidden;
        }

        .right-triangle {
            position: absolute;
            bottom: 0;
            right: 0;
            height: 100%;
            width: 50%;
            background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.6)), url("https://images.pexels.com/photos/209235/pexels-photo-209235.jpeg?h=350&auto=compress") no-repeat -64% 202%;
            background-size: cover;
            clip-path: polygon(100% 0, 0% 100%, 100% 100%);
        }

        .content {
            z-index: 2; /* To ensure content is above the triangle */
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding-left: 5%;
            max-width: 60%;
        }

        .presents-text {
            color: var(--subtle-text-color);
            font-family: "Open Sans Condensed", sans-serif;
            font-weight: 300;
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

        .title {
            color: var(--light-text-color);
            font-family: "Ubuntu", sans-serif;
            font-weight: 700;
            font-size: clamp(1.5rem, 5vw, 3rem); /* Responsive font size */
            text-transform: uppercase;
            line-height: 1.2;
            margin: 0;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--accent-color);
            border-radius: 0;
            border: none;
            padding: 0.75rem 1.5rem;
            font-family: "Ubuntu", sans-serif;
            font-weight: 700;
            color: var(--light-text-color);
            text-transform: uppercase;
            text-decoration: none;
            cursor: pointer;
            margin-top: 1.5rem;
            transition: background-color 0.3s ease;
        }

        .cta-button:hover,
        .cta-button:focus {
            background-color: #316d9e; /* Darker shade on hover */
        }