        :root {
            --olive: #BABF94;
            --hc-blue: #2FA4D7;
            --light-bg: #F8F9FA;
            --white: #FFFFFF;
        }

        body {
            font-family: 'M PLUS Rounded 1c', sans-serif;
            background-color: var(--light-bg); /* Full website bg light grey */
            color: var(--olive);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        /* Magazine Layout: Centralized content with large margins */
        .magazine-container {
            padding-left: 12.5%;
            padding-right: 12.5%;
            width: 100%;
        }

        @media (max-width: 1024px) {
            .magazine-container { padding-left: 5%; padding-right: 5%; }
        }

        .text-olive { color: var(--olive); }
        .text-blue { color: var(--hc-blue); }
        .bg-blue { background-color: var(--hc-blue); }
        .hover-blue:hover { color: var(--hc-blue); }
        
        /* Sticky Header */
        header.sticky {
            padding-top: -1rem;
            padding-bottom: 1rem;
            box-shadow: 0 4px 30px rgba(0,0,0,0.03);
        }

        /* Animations */
        .hero-zoom {
            animation: slowZoom 25s infinite alternate ease-in-out;
        }
        @keyframes slowZoom {
            from { transform: scale(1); }
            to { transform: scale(1.1); }
        }

        /* About Page Hover Effects */
        .img-grid-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
        }
        .popup-tools {
            position: absolute;
            bottom: -60px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .img-grid-item:hover .popup-tools {
            bottom: 25px;
        }
        .tool-btn {
            background: white;
            padding: 12px;
            border-radius: 50%;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            color: var(--hc-blue);
            transition: all 0.3s;
        }
        .tool-btn:hover {
            transform: scale(1.15);
            background: var(--hc-blue);
            color: white;
        }

        /* Section Transitions */
        .page-content { display: none; }
        .page-content.active { display: block; animation: fadeIn 0.6s ease; }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #f1f1f1; }
        ::-webkit-scrollbar-thumb { background: var(--olive); border-radius: 10px; }
