        .container {
            max-width: 100%;
            margin: 0 auto;
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(189, 40, 43, 0.1);
            overflow: hidden;
        }

        .header {
            background: linear-gradient(135deg, #fce8e8 0%, #f9d4d4 100%);
            padding: 30px 40px;
            border-bottom: 2px solid #bd282b;
        }

        .header h1 {
            color: #bd282b;
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .header .subtitle {
            color: #bd282b;
            font-size: 18px;
            font-style: italic;
        }

        .section {
            padding: 25px 40px;
            background-color: rgba(252, 232, 232, 0.4);
            border-bottom: 1px solid #f2c0c0;
        }

        .section:last-child {
            border-bottom: none;
        }

        .section-title {
            display: flex;
            align-items: center;
            margin-bottom: 18px;
        }

        .section-number {
            width: 32px;
            height: 32px;
            background-color: #bd282b;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: bold;
            margin-right: 12px;
        }

        .section-title-text {
            color: #bd282b;
            font-size: 20px;
            font-weight: 600;
        }

        .section-content {
            color: #333333;
            line-height: 1.8;
            font-size: 15px;
        }

        .section-content ul {
            list-style: none;
            padding-left: 20px;
        }

        .section-content li {
            margin-bottom: 10px;
            position: relative;
        }

        .section-content li::before {
            content: "";
            position: absolute;
            left: -15px;
            top: 8px;
            width: 6px;
            height: 6px;
            background-color: #bd282b;
            border-radius: 50%;
        }

        .subsection {
            margin-left: 20px;
            margin-top: 8px;
            margin-bottom: 8px;
        }