html { scroll-behavior: smooth; }
        body {
            color: #2C2C2C;
            background-color: #FFFFFF;
            line-height: 1.8;
            font-feature-settings: "palt";
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .fade-in-up {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
        }
        .fade-in-up.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .image-zoom-container { overflow: hidden; }
        .image-zoom-container img { transition: transform 0.7s ease; }
        .image-zoom-container:hover img { transform: scale(1.05); }

        #sp-menu { transition: opacity 0.3s ease, visibility 0.3s ease; }
        #sp-menu.hidden-menu { opacity: 0; visibility: hidden; pointer-events: none; }
        #sp-menu.active-menu { opacity: 1; visibility: visible; pointer-events: auto; }

        .separator-line { height: 1px; background-color: #EAE8E3; width: 100%; }

        /* Custom Select Style */
        select.custom-select {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23595959' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1em;
        }

        /* Accordion Style */
        details > summary { list-style: none; }
        details > summary::-webkit-details-marker { display: none; }
