        main {
            max-width: 700px;
            margin: 3rem auto;
            padding: 0 1rem;
        }

        h1 {
            margin-bottom: 0.5rem;
        }

        p.intro {
            margin-bottom: 2rem;
            color: #444;
            line-height: 1.5;
        }

        /* Styled text form */
        form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        textarea {
            width: 100%;
            min-height: 220px;
            padding: 1rem;
            font-size: 1rem;
            line-height: 1.5;
            border: 1px solid #ccc;
            border-radius: 6px;
            resize: vertical;
            font-family: inherit;
        }

        textarea:focus {
            outline: none;
            border-color: #000;
        }

        button {
            align-self: flex-start;
            padding: 0.6rem 1.4rem;
            font-size: 0.95rem;
            font-weight: 500;
            border: 1px solid #000;
            background: #000;
            color: #fff;
            cursor: pointer;
            border-radius: 4px;
        }

        button:hover {
            background: #fff;
            color: #000;
        }

        .note {
            font-size: 0.85rem;
            color: #666;
            margin-top: 0.5rem;
        }