.elementor-476 .elementor-element.elementor-element-2881937{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-dbd2d04 */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #fdf6f6 0%, #f8e9e9 100%);
            min-height: 100vh;
            padding: 20px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .header {
            text-align: center;
            background: linear-gradient(135deg, #c36 0%, #a22 100%);
            color: white;
            padding: 40px 20px;
            border-radius: 15px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(195, 102, 102, 0.3);
        }

        .header h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
            font-weight: 300;
        }

        .header .subtitle {
            font-size: 1.2em;
            opacity: 0.9;
            margin-bottom: 15px;
        }

        .header .info {
            background: rgba(255,255,255,0.15);
            padding: 15px;
            border-radius: 10px;
            margin-top: 20px;
            display: inline-block;
            backdrop-filter: blur(10px);
        }

        .download-btn {
            display: block;
            width: fit-content;
            margin: 20px auto 30px;
            background: linear-gradient(135deg, #c36 0%, #a22 100%);
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(195, 102, 102, 0.3);
            text-align: center;
        }

        .download-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(195, 102, 102, 0.4);
        }

        .accordion {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(195, 102, 102, 0.1);
            margin-bottom: 20px;
            border: 1px solid #f0d6d6;
        }

        .accordion-item {
            border-bottom: 1px solid #f0d6d6;
        }

        .accordion-item:last-child {
            border-bottom: none;
        }

        .accordion-header {
            background: linear-gradient(135deg, #c36 0%, #b33 100%);
            color: white;
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .accordion-header:hover {
            background: linear-gradient(135deg, #b33 0%, #a22 100%);
        }

        .accordion-header h3 {
            margin: 0;
            font-weight: 500;
            font-size: 1.3em;
        }

        .accordion-icon {
            font-size: 1.5em;
            transition: transform 0.3s ease;
        }

        .accordion-content {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: #fefafa;
        }

        .accordion-content.active {
            padding: 30px;
            max-height: 10000px;
        }

        .chapter-title {
            color: #7a2e2e;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0d6d6;
            font-size: 1.4em;
        }

        .article {
            margin-bottom: 25px;
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 5px rgba(195, 102, 102, 0.05);
            border-left: 4px solid #c36;
        }

        .article:last-child {
            margin-bottom: 0;
        }

        .article-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .article-number {
            background: #c36;
            color: white;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-weight: bold;
            flex-shrink: 0;
        }

        .article-title {
            color: #7a2e2e;
            font-size: 1.1em;
            font-weight: 600;
        }

        .article-content {
            color: #555;
            line-height: 1.8;
        }

        .article-content p {
            margin-bottom: 10px;
        }

        .article-content ul {
            margin: 10px 0;
            padding-left: 20px;
        }

        .article-content li {
            margin-bottom: 8px;
            color: #555;
            position: relative;
        }

        .article-content li:before {
            content: "•";
            color: #c36;
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }

        .footer {
            text-align: center;
            margin-top: 40px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 10px;
            color: #666;
            border: 1px solid #f0d6d6;
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2em;
            }
            
            .accordion-header {
                padding: 15px;
            }
            
            .accordion-header h3 {
                font-size: 1.1em;
            }
            
            .accordion-content.active {
                padding: 20px;
            }
            
            .article {
                padding: 15px;
            }
            
            .article-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .article-number {
                margin-bottom: 10px;
            }
        }/* End custom CSS */