
        .content-block {
            background-color: #fff;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            width: 100%;
            box-sizing: border-box;
        }
        .tool-section {
            text-align: center;
        }
        .container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            align-items: flex-start;
        }
        .tool-box {
            flex: 1 1 300px;
            background: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        textarea {
            width: 100%;
            height: 250px;
            padding: 15px;
            margin-bottom: 15px;
            border-radius: 4px;
            border: 1px solid #ccc;
            font-size: 1em;
            box-sizing: border-box;
            resize: vertical;
            font-family: monospace;
        }
        button {
            display: inline-block;
            padding: 15px 30px;
            background-color: #28a745;
            color: white;
            text-decoration: none;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            font-size: 1.2rem;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.2s;
        }
        button:hover {
            background-color: #218838;
            transform: translateY(-2px);
        }
        .output-section {
            display: none;
            margin-top: 15px;
            text-align: left;
        }
        .output-section h4 {
            margin: 0 0 10px;
            font-size: 1em;
            color: #0056b3;
        }
        .output-section .reduction-info {
            font-size: 0.9em;
            color: #555;
            margin-bottom: 10px;
        }
        .output-textarea {
	    background-color:#343a40;
            color:#FFF;
            width: 100%;
            height: 250px;
            padding: 10px;
            border-radius: 4px;
            font-size: 0.9em;
            font-family: monospace;
            box-sizing: border-box;
            resize: vertical;
        }
        .copy-btn {
            background-color: #007bff;
            margin-top: 10px;
        }
        .copy-btn:hover {
            background-color: #0069d9;
        }
        .features-list {
            list-style-type: none;
            padding: 0;
            display: grid;
            gap: 15px;
        }
        .features-list li {
            background: #fff;
            padding: 20px;
            border-left: 5px solid #007bff;
            margin-bottom: 0;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            box-sizing: border-box;
        }
        .features-list li h3 {
            margin-top: 0;
            margin-bottom: 5px;
        }
        .faq-item {
            background: #fff;
            padding: 20px;
            border-left: 5px solid #007bff;
            margin-bottom: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            box-sizing: border-box;
        }
        .faq-item h3 {
            margin-top: 0;
        }
