
        /* Comment form styling */
        .comment-respond {
            background-color: #f9f9f9;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 40px;
            box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
            border: 1px solid #e0e0e0;
        }
        
        .comment-reply-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 25px;
            color: #333;
            text-align: center;
        }
        
        .comment-form label {
            font-weight: 600;
            color: #555;
            margin-bottom: 8px;
            display: block;
        }
        
        .comment-form textarea,
        .comment-form input[type='text'],
        .comment-form input[type='email'] {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            background-color: #fff;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        .comment-form textarea:focus,
        .comment-form input[type='text']:focus,
        .comment-form input[type='email']:focus {
            border-color: #3d5a80;
            outline: none;
            box-shadow: 0 0 5px rgba(61, 90, 128, 0.2);
        }
        
        .comment-form .submit {
            background-color: #3d5a80;
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .comment-form .submit:hover {
            background-color: #2c3e50;
        }
        
        .logged-in-as {
            margin-bottom: 20px;
            font-size: 14px;
            color: #666;
        }
        
        .logged-in-as a {
            color: #3d5a80;
            text-decoration: none;
        }
        
        .logged-in-as a:hover {
            text-decoration: underline;
        }
        
        .required-field-message {
            color: #777;
            font-style: italic;
            font-size: 13px;
        }
        
        .required {
            color: #e53935;
        }
        
        /* Hide maxi-block comments */
        .maxi-block--use-sc.wp-block-comments {
            display: none !important;
        }
        
        /* Responsive styles */
        @media (max-width: 768px) {
            .comment-respond {
                padding: 20px 15px;
            }
            
            .comment-reply-title {
                font-size: 20px;
            }
            
            .comment-form .submit {
                width: 100%;
            }
        }