.elementor-25293 .elementor-element.elementor-element-795d611a{--display:flex;--padding-top:80px;--padding-bottom:80px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for shortcode, class: .elementor-element-ce54d81 */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #6B9B9B;
            --secondary-color: #A88FB3;
            --accent-color: #F0B5A0;
            --bg-color: #FAF8F5;
            --text-primary: #3A3A3A;
            --text-secondary: #6B6B6B;
            --white: #FFFFFF;
            --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 8px 16px rgba(0, 0, 0, 0.12);
            --success: #7BAE7F;
        }

        body {
            font-family: 'Noto Sans KR', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-primary);
            line-height: 1.7;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(240, 181, 160, 0.1) 0%, rgba(107, 155, 155, 0.1) 100%);
            padding: 120px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.05;
            background-image: 
                radial-gradient(circle at 20% 80%, var(--accent-color) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, var(--secondary-color) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, var(--primary-color) 0%, transparent 50%);
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-emoji {
            font-size: 64px;
            margin-bottom: 24px;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .hero-title {
            font-family: 'Pretendard', sans-serif;
            font-size: 48px;
            font-weight: 600;
            margin-bottom: 20px;
            animation: fadeInUp 0.8s ease-out;
        }

        .hero-subtitle {
            font-size: 20px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        /* Welcome Message */
        .welcome-section {
            background: var(--white);
            padding: 60px 0;
            text-align: center;
        }

        .welcome-message {
            max-width: 800px;
            margin: 0 auto;
            font-size: 18px;
            line-height: 1.8;
            color: var(--text-secondary);
        }

        .welcome-highlight {
            color: var(--primary-color);
            font-weight: 500;
        }



        /* Main Content */
        .main-content {
            padding: 60px 0 120px;
        }

        /* Guide Grid */
        .guide-grid {
            display: grid;
            gap: 32px;
        }

        /* Featured Guide Card */
        .featured-guide {
            background: var(--white);
            border-radius: 16px;
            box-shadow: var(--shadow);
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 400px;
            animation: fadeInUp 0.8s ease-out;
        }

        @media (max-width: 768px) {
            .featured-guide {
                grid-template-columns: 1fr;
            }
        }

        .featured-visual {
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .featured-icon {
            font-size: 120px;
            color: rgba(255, 255, 255, 0.9);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .featured-content {
            padding: 48px;
            display: flex;
            flex-direction: column;
        }

        .featured-badge {
            display: inline-block;
            background: rgba(123, 174, 127, 0.1);
            color: var(--success);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            width: fit-content;
            margin-bottom: 16px;
        }

        .featured-title {
            font-family: 'Pretendard', sans-serif;
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 20px;
            line-height: 1.4;
        }

        .featured-description {
            color: var(--text-secondary);
            margin-bottom: 32px;
            flex-grow: 1;
        }

        .featured-cta {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .download-btn {
            background: var(--primary-color);
            color: var(--white);
            padding: 16px 32px;
            border-radius: 30px;
            border: none;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .download-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(107, 155, 155, 0.3);
        }

        /* Guide Cards Grid */
        .guides-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }

        @media (max-width: 768px) {
            .guides-container {
                grid-template-columns: 1fr;
            }
        }

        .guide-card {
            background: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow);
            padding: 32px;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.8s ease-out;
        }

        .guide-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .guide-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
        }

        .guide-header {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 20px;
        }

        .guide-icon {
            width: 48px;
            height: 48px;
            background: rgba(107, 155, 155, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
        }

        .guide-title {
            font-family: 'Pretendard', sans-serif;
            font-size: 20px;
            font-weight: 500;
            line-height: 1.4;
        }

        .guide-description {
            color: var(--text-secondary);
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .guide-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }

        .guide-duration {
            display: flex;
            align-items: center;
            gap: 4px;
            color: var(--text-secondary);
            font-size: 14px;
        }

        .guide-difficulty {
            display: flex;
            gap: 4px;
        }

        .difficulty-star {
            color: var(--accent-color);
            font-size: 14px;
        }

        /* Special Section */
        .special-section {
            background: linear-gradient(135deg, rgba(107, 155, 155, 0.05) 0%, rgba(168, 143, 179, 0.05) 100%);
            padding: 80px 0;
            margin: 60px 0;
            text-align: center;
        }

        .special-title {
            font-family: 'Pretendard', sans-serif;
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .special-subtitle {
            color: var(--text-secondary);
            font-size: 18px;
            margin-bottom: 40px;
        }

        /* Daily Care Cards */
        .daily-care-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            max-width: 800px;
            margin: 0 auto;
        }

        .daily-care-card {
            background: var(--white);
            padding: 24px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: all 0.3s ease;
        }

        .daily-care-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .care-time {
            font-size: 32px;
            margin-bottom: 8px;
        }

        .care-label {
            font-weight: 500;
            margin-bottom: 8px;
        }

        .care-activity {
            font-size: 14px;
            color: var(--text-secondary);
        }

        /* Tip Card */
        .tip-card {
            background: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow);
            padding: 32px;
            margin: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .tip-card::before {
            content: '💡';
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 80px;
            opacity: 0.1;
        }

        .tip-title {
            font-family: 'Pretendard', sans-serif;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--primary-color);
        }

        .tip-content {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-secondary);
        }

        /* Download Section */
        .download-section {
            background: var(--white);
            padding: 60px;
            border-radius: 16px;
            box-shadow: var(--shadow);
            text-align: center;
            margin-top: 60px;
        }

        .download-title {
            font-family: 'Pretendard', sans-serif;
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .download-description {
            color: var(--text-secondary);
            margin-bottom: 32px;
            font-size: 18px;
        }

        .download-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
            max-width: 800px;
            margin: 0 auto;
        }

        .download-item {
            padding: 24px;
            border: 2px solid #E0E0E0;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .download-item:hover {
            border-color: var(--primary-color);
            background: rgba(107, 155, 155, 0.05);
        }

        .download-icon {
            font-size: 48px;
            margin-bottom: 16px;
        }

        .download-name {
            font-weight: 500;
            margin-bottom: 8px;
        }

        .download-size {
            font-size: 14px;
            color: var(--text-secondary);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }/* End custom CSS */