body {
            /*font-family: Arial, sans-serif; */
            /*font-family: "archivo", sans-serif; */
            font-family: "inter-variable", sans-serif;
            font-variation-settings: "slnt" 0, "wght" 400;
            /*font-weight: 400; */
            /*font-style: normal; */
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        h1 {
            text-align: left;
            font-weight: 400;
            font-style: normal;
            font-size: 36px;
            color: #555;
            line-height: 1.3;
        }
        p {
            text-align: left;
            font-variation-settings: "slnt" 0, "wght" 400;
            /*font-weight: 400; */
            /*font-style: normal; */
            font-size: 18px;
            line-height: 1.4;
            color: #555;
        }
        a {
            color: #555;
            text-underline-offset: 0.2em;
        }
        a:hover {
            color: #0000ff;
        }
        .container {
            max-width: 1600px;
            margin: 60px auto;
            padding: 20px;
        }
        .text-container {
            max-width: 800px;  
        }
        .grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .item {
            position: relative;
            overflow: hidden;
        }
        .item img {
            width: 100%;
            height: auto;
            display: block;
        }
        .item-title {
            bottom: 0;
            left: 0;
            right: 0;
            color: #aaaaaa;
            padding-top: 12px;
            text-align: left;
            font-size: 16px;
        }
        .large {
            grid-column: span 2;
            grid-row: span 2;
        }
        .small {
            grid-column: span 1;
            grid-row: span 1;
        }
        .menu {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 100;
        }
        .menu-btn {
            background-color: transparent;
            color: #555;
            font-size: 72px;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
        }
        .menu-content {
            display: none;
            position: absolute;
            right: 0;
/*            background-color: #333;*/
/*            min-width: 160px;*/
/*            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
        }
        .menu-content a {
            color: #fff;
            background-color: #222;
            padding: 12px 24px 12px 24px;
            margin: 24px 10px;
            min-width: 160px;
            text-decoration: none;
            display: block;
            font-size: 36px;
            text-align: center;
        }
        .menu-content a:hover {
            background-color: #222;
            color: #aaaaaa;
        }

        .menu-btn {
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
        }
    
        .menu-icon, .close-icon {
            width: 60px;
            height: 60px;
        }

        .mail-icon {
            width: 32px;
            height: 32px;
            margin-left: 10px;
            vertical-align: -10px
        }

        .grid-container {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 20px;
            margin-bottom: 60px;
        }
        
        .grid-item {
            overflow: hidden;
            margin-bottom: 10px;
        }
        
        .grid-item img, .grid-item video {
            width: 100%;
            height: auto;
        }
        
        /* Item placements */
        .item1 {
            grid-column: 1 / span 5;
            grid-row: 2 / span 2;
        }
        
        .item2 {
            grid-column: 6 / span 4;
            grid-row: 1 / span 2;
        }
        
        .item3 {
            grid-column: 9 / span 4;
            grid-row: 3 / span 2;
        }

        .item4 {
            grid-column: 3 / span 5;
            grid-row: 4 / span 2;
        }

        footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
        }
        .social-links {
            display: flex;
            margin-left: auto; /* Pushes the container to the right */
            text-align: right; /* Aligns the text to the right */
            gap: 12px;
        }
        
        .social-links a {
           font-size: 16px;
            color: #555;
            transition: color 0.3s;
            text-underline-offset: 0.2em;
        }
        
        .social-links a:hover {
            color: #0000ff;
        }

        @media (max-width: 1200px) {
            .grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .large {
                grid-column: span 2;
                grid-row: span 2;
            }
            .small {
                grid-column: span 1;
                grid-row: span 1;
            }
        }

        @media (max-width: 768px) {
            .grid-container {
                grid-template-columns: 1fr; /* Change to single column */
                gap: 15px; /* Optionally reduce gap for smaller screens */
            }

            /* Reset all item placements to span full width */
            .item1, .item2, .item3, .item4 {
                grid-column: 1 / -1; /* Span from first to last column */
                grid-row: auto; /* Let the grid determine rows automatically */
                margin-bottom: 15px; /* Add some space between items */
            }
        }