  .containeragb {
            max-width: 1000px;
            margin: 150px auto;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            overflow: hidden;
        }

        .header {
            background: linear-gradient(135deg, #E30615CE 0%, #ED5353 100%);
            color: white;
            padding: 30px;
            text-align: center;
            
        }

        .header h1 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .header p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .content {
            padding: 30px;
        }

        .section {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e0e0e0;
        }

        .section:last-child {
            border-bottom: none;
        }

        .section-title {
            color: #ED5353;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-number {
            background: linear-gradient(135deg, #E30615CE 0%, #ED5353 100%);
            color: white;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            font-weight: bold;
            flex-shrink: 0;
        }

        .subsection {
            margin-bottom: 15px;
        }

        .subsection-title {
            font-weight: 600;
            color: #ED5353;
            margin-bottom: 8px;
            font-size: 1rem;
            
        }

        .subsection-content {
            color: #333;
            line-height: 1.7;
            margin-left: 0;
            text-align: justify;
        }

        .list-item {
            margin: 10px 0;
            padding-left: 20px;
            position: relative;
        }

        .list-item:before {
            content: "•";
            position: absolute;
            left: 5px;
            color: #ED5353;
            font-weight: bold;
        }

      

        .highlight {
            background: #fff3cd;
            padding: 2px 6px;
            border-radius: 3px;
        }

        @media (max-width: 768px) {
            body {
                padding: 10px;
            }

            .containeragb{
                padding: 0 10px;
            }

            .header h1 {
                font-size: 1.4rem;
            }

            .header p {
                font-size: 0.85rem;
            }

            .content {
                padding: 20px;
            }

            .section-title {
                font-size: 1.1rem;
                flex-direction: column;
                align-items: flex-start;
            }

            .subsection-content {
                text-align: left;
            }
        }

        @media (max-width: 480px) {
            .header {
                padding: 20px 15px;
            }

            .header h1 {
                font-size: 1.2rem;
            }

            .content {
                padding: 15px;
            }

            .section-title {
                font-size: 1rem;
            }

            .section-number {
                width: 28px;
                height: 28px;
                font-size: 0.85rem;
            }
        }