        /* CTA 섹션 */
        .cta {
            background: #006400;
            padding: 70px 20px;
            text-align: center;
            color: #fff;
        }

        .cta .inner {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta h2 {
            font-size: 2.2rem;
            color: #fff;
            margin-bottom: 12px;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .cta p {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
            line-height: 1.5;
        }

        /* 버튼 그룹 */
        .cta .btn-group {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 18px;
        }

        /* 기본 버튼 */
        .cta .btn {
            display: inline-block;
            padding: 14px 28px;
            font-size: 1rem;
            border-radius: 6px;
            text-decoration: none;
            transition: all 0.3s ease;
            min-width: 180px;
            text-align: center;
            font-weight: bold;
            box-sizing: border-box;
        }

        /* 초록 버튼 */
        .cta .btn.green {
            background: #fff;
            color: #006400;
        }

        .cta .btn.green:hover {
            background: #e6e6e6;
        }

        /* 아웃라인 버튼 */
        .cta .btn.outline {
            border: 2px solid #fff;
            color: #fff;
            background: transparent;
        }

        .cta .btn.outline:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        /* 반응형 */
        @media (max-width: 768px) {
            .cta h2 {
                font-size: 1.8rem;
            }

            .cta p {
                font-size: 1rem;
            }

            .cta .btn {
                min-width: 150px;
                padding: 12px 20px;
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            .cta h2 {
                font-size: 1.5rem;
            }

            .cta p {
                font-size: 0.9rem;
            }

            .cta .btn-group {
                flex-direction: column;
                gap: 12px;
            }

            .cta .btn {
                width: 100%;
                max-width: 260px;
                min-width: auto;
                font-size: 0.9rem;
                padding: 10px 16px;
                margin: 0 auto;
            }
        }