
	*::-webkit-scrollbar { display: none}
	select {border: 0}


@font-face {
    font-family: 'NanumHumanTTFBold';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2501-1@1.1/NanumHumanTTFBold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}
* {
    outline: none;
    text-decoration: none;
	background:unset;
	font-family: 'NanumHumanTTFBold';
}

        body {
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            scroll-behavior: smooth;
			overflow: scroll;
        }

		#content {width:1024px;margin:120px auto;padding:0 25px;box-sizing:border-box}
        @media screen and (max-width: 1024px) {
		#content {width:100%;padding:0 15px}
		}

        .header img {
            height: 50px;
        }

        .header .nav {
            display: flex;
            gap: 20px;
        }

        .header .nav a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            font-weight: bold;
            transition: color 0.3s;
        }

        .header .nav a:hover {
            color: #84fab0;
        }

        .section {
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: left;
            color: white;
            font-size: 3rem;
            font-weight: bold;
            position: relative;
            padding: 40px;
            box-sizing: border-box;
        }

        .section-1 {
            background: 
        radial-gradient(circle at 50% 50%, #89f7fe33 0%, #84fab044 30%, transparent 60%),
        #000;
            color: white;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .section-1 .highlight {
            font-size: 1.3rem;
            font-weight: bold;
            margin-top: 20px;
            color: #84fab0;
        }

        .section-2 {
            background: white;
            color: black;
            flex-direction: row;
            justify-content: space-between;
        }

        .section-2 .left {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .section-2 .right {
            flex: 2;
            padding: 20px;
            max-width: 60%;
        }

        .section-2 .right h3 {
            font-size: 2rem;
            font-weight: bold;
        }

        .section-2 .right p {
            font-size: 1.5rem;
            font-weight: 500;
        }

        /* Section-3 styling with green gradient */
        .section-3 {
            background: linear-gradient(135deg, #84fab0, #66ff66);
            flex-direction: row;
            justify-content: space-between;
        }

        .section-3 .left {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-end;
            padding: 20px;
            text-align: right;
        }

        .section-3 .right {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            padding: 20px;
        }

        .section-3 .left p {
            font-size: 1.2rem;
            font-weight: 500;
            max-width: 70%;
        }

        .section-3 .right img {
            max-width: 100%;
            border-radius: 55px;
            max-width: 400px;
        }

        .gradient-box {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 20px;
            font-size: 1rem;
            animation: fade-in-out 2s infinite;
        }

        @keyframes fade-in-out {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0;
            }
        }

        .cta-button {
            margin-top: 20px;
            padding: 15px 30px;
            font-size: 1.2rem;
            font-weight: bold;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .section-1 .cta-button {
            background: white;
            color: black;
        }

        .section-2 .cta-button {
            background: black;
            color: white;
        }

        .section-3 .cta-button {
            background: white;
            color: black;
        }

        .cta-button:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        /* Responsive Design */
        @media screen and (max-width: 768px) {
            .section-1, .section-2, .section-3 {
                flex-direction: column;
                text-align: center;
            }

            .section-2, .section-3 {
                padding: 20px;
            }

            .section-2 .right,
            .section-3 .left,
            .section-3 .right {
                max-width: 100%;
                margin-bottom: 20px;
            }

            .section-2 .right h3 {
                font-size: 1.5rem;
            }

            .section-2 .right p {
                font-size: 1rem;
            }

            .section-3 .left img,
            .section-3 .right img {
                width: 80%;
                max-width: 300px;
            }
        }