        /* Image Container Styles */
        .image-container {
            max-width: 900px;
            margin: 50px auto;
            background: rgba(0, 0, 0, 0.9);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            position: relative;
        }
        body {
            background-color: #1a1a1a;
            font-family: Arial, sans-serif;
            padding: 20px;
        }

        .image-container {
            max-width: 900px;
            margin: 50px auto;
            background: rgba(0, 0, 0, 0.9);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            position: relative;
        }

        .container-image {
            width: 100%;
            max-width: 600px;
            height: auto;
            display: block;
            margin: 0 auto 25px;
            border-radius: 10px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .container-image:hover {
            transform: scale(1.05);
        }

        .image-text-content h2 {
            color: #7a0303;
            font-size: 1.8em;
            margin-bottom: 15px;
            text-align: center;
        }

        .image-text-content p {
            color: #bdc3c7;
            font-size: 1em;
            line-height: 1.8;
            text-align: left; /* Changed from justify to left */
        }

        @media (max-width: 768px) {
            .image-container {
                padding: 20px;
                margin: 30px 10px;
            }

            .container-image {
                max-width: 100%;
            }

            .image-text-content h2 {
                font-size: 1.4em;
            }

            .image-text-content p {
                font-size: 0.9em;
            }
        }
        .container-image {
            width: 100%;
            max-width: 600px;
            height: auto;
            display: block;
            margin: 0 auto 25px;
            border-radius: 10px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .container-image:hover {
            transform: scale(1.05);
        }

        .image-text-content h2 {
            color: #7a0303;
            font-size: 1.8em;
            margin-bottom: 15px;
            text-align: center;
        }

        .image-text-content p {
            color: #bdc3c7;
            font-size: 1em;
            line-height: 1.8;
            text-align: justify;
        }

        /* Modal Styles */
        .image-modal {
            display: none;
            position: fixed;
            z-index: 10001;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.95);
            animation: fadeIn 0.3s ease;
        }

        .image-modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .image-modal-content {
            max-width: 90%;
            max-height: 90vh;
            border-radius: 10px;
            animation: slideIn 0.3s ease;
        }

        @keyframes slideIn {
            from {
                transform: scale(0.8);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .image-modal-close {
            position: absolute;
            top: 30px;
            right: 40px;
            color: #ff4500;
            font-size: 3em;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s ease;
            z-index: 10002;
        }

        .image-modal-close:hover {
            color: #cf2401;
        }

        @media (max-width: 768px) {
            .image-container {
                padding: 20px;
                margin: 30px 10px;
            }

            .container-image {
                max-width: 100%;
            }

            .image-text-content h2 {
                font-size: 1.4em;
            }

            .image-text-content p {
                font-size: 0.9em;
            }

            .image-modal-close {
                top: 15px;
                right: 20px;
                font-size: 2em;
            }
        }

                * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }


        .container {
            max-width: 900px;
            margin: 0 auto;
            margin-top:150px;
            background: rgba(0, 0, 0, 0.9);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }

        h1 {
            text-align: center;
            font-size: 2.5em;
            margin-bottom: 40px;
            color: #7a0303;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .section {
            margin-bottom: 35px;
            background: rgb(0, 0, 0);
            padding: 25px;
            border-radius: 10px;
      
        }

        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .section-number {
            background: #ff0000;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2em;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .section-title {
            font-size: 1.5em;
            font-weight: bold;
            color: #ecf0f1;
        }

        ul {
            list-style: none;
            padding-left: 0;
        }

        /* More specific rules to avoid overrides elsewhere */
        .container .section ul li {
            margin-bottom: 15px;
            padding-left: 52px !important;
            position: relative !important;
            line-height: 1.6;
            color: #bdc3c7;
            display: block;
        }

        .container .section ul li i {
            position: absolute !important;
            left: 12px !important;
            top: 50% !important;
            transform: translateY(-50%) !important;
            color: #7c0000;
            font-size: 1.2em;
            width: 24px;
            text-align: center;
            display: inline-block;
            line-height: 1;
        }

        .highlight {
            color: #e74c3c;
            font-weight: bold;
        }

        .note {
            background: rgba(219, 52, 52, 0.1);
            border-left: 3px solid #db3434;
            padding: 15px;
            margin-top: 10px;
            border-radius: 5px;
            font-style: italic;
        }

        @media (max-width: 768px) {
            .container {
                padding: 25px;
            }

            h1 {
                font-size: 2em;
            }

            .section-title {
                font-size: 1.2em;
            }

            .section {
                padding: 20px;
            }
        }